aboutsummaryrefslogtreecommitdiff
path: root/bcinfo/BitReader_3_0/Android.bp
blob: f3e58e7c2eaec1700513098f43c9c6bc1e96d5f9 (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
27
28
29
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "frameworks_compile_libbcc_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-NCSA
    default_applicable_licenses: ["frameworks_compile_libbcc_license"],
}

cc_library_static {
    name: "libLLVMBitReader_3_0",
    vendor_available: true,
    defaults: ["llvm-defaults"],
    host_supported: true,

    // We don't control the source files under this dir.
    // So, disable tidy checks.
    tidy: false,

    srcs: ["BitcodeReader.cpp"],
    target: {
        host: {
            cflags: ["-D__HOST__"],
        },
        windows: {
            enabled: true,
        },
    },
}