Yun Peng | 2a07773 | 2020-05-06 08:51:19 +0000 | [diff] [blame] | 1 | licenses(["notice"]) # BSD/MIT-like license |
2 | |||||
3 | cc_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 | ) |