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