You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
626 B

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,
},
},
host_ldlibs: ["-lm"],
stl: "none",
}
cc_binary {
name: "bro",
host_supported: true,
cflags: ["-Werror"],
srcs: ["tools/bro.c"],
target: {
linux_bionic: {
enabled: true,
},
},
shared_libs: ["libbrotli"],
}