blob: c0f81fa1246c9046f8cafcc1d9ed335931cfdc21 [file] [log] [blame]
licenses(["notice"]) # BSD/MIT-like license
cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
# Use -Dverbose=-1 to turn off zlib's trace logging.
copts = [
"-w",
"-Dverbose=-1",
],
includes = [
".",
],
visibility = ["//visibility:public"],
)
alias(
name = "z",
actual = ":zlib",
visibility = ["//visibility:public"],
)