summaryrefslogtreecommitdiff
path: root/third_party/android/libBlocksRuntime/Android.bp
blob: 23965532189ea74a5f31edf320e21aa65f927eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_honggfuzz_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-MIT
    default_applicable_licenses: ["external_honggfuzz_license"],
}

cc_library {
    name: "libBlocksRuntime",
    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
        "-Wno-unused-parameter",
        "-Wno-unused-function",
        "-DHAVE_SYNC_BOOL_COMPARE_AND_SWAP_INT",
        "-DHAVE_SYNC_BOOL_COMPARE_AND_SWAP_LONG",
    ],
    c_std: "c11",
    clang:true,
    srcs: [
        "*.c",
    ]
}