aboutsummaryrefslogtreecommitdiff
path: root/BitWriter_2_9/Android.bp
blob: e47a0d6333d29dd95b7158948d237d3e1f72b1d2 (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
// For the host
// =====================================================
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_slang_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-NCSA
    default_applicable_licenses: ["frameworks_compile_slang_license"],
}

cc_library_host_static {
    name: "libLLVMBitWriter_2_9",
    defaults: ["slang-defaults"],
    include_dirs: ["frameworks/compile/slang"],

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

    srcs: [
        "BitcodeWriter.cpp",
        "BitcodeWriterPass.cpp",
        "ValueEnumerator.cpp",
    ],
}