blob: 85cb1b3bd5b7447aac654cf03821bd5793877ab1 [file] [log] [blame]
cc_library {
name: "libbrotli",
host_supported: true,
cflags: [
"-Werror",
"-O2",
],
export_include_dirs: ["include/"],
local_include_dirs: ["include/"],
srcs: [
"common/*.c",
"dec/*.c",
"enc/*.c",
],
target: {
linux_bionic: {
enabled: true,
},
},
stl: "none",
}
cc_binary {
name: "bro",
host_supported: true,
cflags: ["-Werror"],
srcs: ["tools/bro.c"],
target: {
linux_bionic: {
enabled: true,
},
},
shared_libs: ["libbrotli"],
}