• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// For the host and device
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_static {
13    name: "libLLVMBitWriter_3_2",
14    vendor_available: true,
15    host_supported: true,
16    defaults: ["slang-defaults"],
17
18    include_dirs: ["frameworks/compile/slang"],
19
20    // We don't control the source files under this dir.
21    // So, disable tidy checks.
22    tidy: false,
23
24    srcs: [
25        "BitcodeWriter.cpp",
26        "BitcodeWriterPass.cpp",
27        "ValueEnumerator.cpp",
28    ],
29}
30