1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_compile_libbcc_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-NCSA
7    default_applicable_licenses: ["frameworks_compile_libbcc_license"],
8}
9
10cc_library_static {
11    name: "libLLVMBitReader_3_0",
12    vendor_available: true,
13    defaults: ["llvm-defaults"],
14    host_supported: true,
15
16    // We don't control the source files under this dir.
17    // So, disable tidy checks.
18    tidy: false,
19
20    srcs: ["BitcodeReader.cpp"],
21    target: {
22        host: {
23            cflags: ["-D__HOST__"],
24        },
25        windows: {
26            enabled: true,
27        },
28    },
29}
30