aboutsummaryrefslogtreecommitdiff
path: root/bcinfo/BitReader_2_7/Android.bp
blob: 3003ff0771990abf1fcbd8288abe318b4ead65a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cc_library_static {
    name: "libLLVMBitReader_2_7",
    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,
        },
    },
}