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