cc_library_static {
    name: "libLLVMTableGen",
    defaults: ["llvm-defaults-no-generated-headers"],
    cflags: [
        "-W",
        "-Wall",
        "-Wno-unused-lambda-capture",
        "-Wno-unused-parameter",
    ],
    srcs: ["*.cpp"],
    target: {
        // llvm-defaults turns off host builds by default, turn it back on for
        // modules that are used to build llvm-tblgen
        host: {
            enabled: true,
        },
    },
}