blob: 3d55bc6e89d05a13d78618b24584aadca85d5ea7 [file] [log] [blame]
Yun Peng2a077732020-05-06 08:51:19 +00001licenses(["notice"]) # BSD/MIT-like license
2
3cc_library(
4 name = "zlib",
5 srcs = glob(["*.c"]),
6 hdrs = glob(["*.h"]),
7 # Use -Dverbose=-1 to turn off zlib's trace logging. (#3280)
8 copts = [
9 "-w",
10 "-Dverbose=-1",
11 ],
12 includes = ["."],
13 visibility = ["//visibility:public"],
14)