• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// For the host and device
2// =====================================================
3cc_library_static {
4    name: "libLLVMBitWriter_3_2",
5    vendor_available: true,
6    host_supported: true,
7    defaults: ["slang-defaults"],
8
9    include_dirs: ["frameworks/compile/slang"],
10
11    // We don't control the source files under this dir.
12    // So, disable tidy checks.
13    tidy: false,
14
15    srcs: [
16        "BitcodeWriter.cpp",
17        "BitcodeWriterPass.cpp",
18        "ValueEnumerator.cpp",
19    ],
20}
21