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_2_7",
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
22    target: {
23        host: {
24            cflags: ["-D__HOST__"],
25        },
26        windows: {
27            enabled: true,
28        },
29    },
30}
31