blob: c0f81fa1246c9046f8cafcc1d9ed335931cfdc21 [file] [log] [blame]
Austin Schuh86110712022-09-16 15:40:54 -07001licenses(["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.
8 copts = [
9 "-w",
10 "-Dverbose=-1",
11 ],
12 includes = [
13 ".",
14 ],
15 visibility = ["//visibility:public"],
16)
17
18alias(
19 name = "z",
20 actual = ":zlib",
21 visibility = ["//visibility:public"],
22)