1// For the host
2// =====================================================
3package {
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "frameworks_compile_slang_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-NCSA
9    default_applicable_licenses: ["frameworks_compile_slang_license"],
10}
11
12cc_library_host_static {
13    name: "libLLVMBitWriter_2_9",
14    defaults: ["slang-defaults"],
15    include_dirs: ["frameworks/compile/slang"],
16
17    // We don't control the source files under this dir.
18    // So, disable tidy checks.
19    tidy: false,
20
21    srcs: [
22        "BitcodeWriter.cpp",
23        "BitcodeWriterPass.cpp",
24        "ValueEnumerator.cpp",
25    ],
26}
27