1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| cc_library(
| name = "z",
| srcs = [
| "adler32.c",
| "compress.c",
| "crc32.c",
| "deflate.c",
| "infback.c",
| "inffast.c",
| "inflate.c",
| "inftrees.c",
| "trees.c",
| "uncompr.c",
| "zutil.c",
| ],
| hdrs = [
| "crc32.h",
| "deflate.h",
| "gzguts.h",
| "inffast.h",
| "inffixed.h",
| "inflate.h",
| "inftrees.h",
| "trees.h",
| "zconf.h",
| "zlib.h",
| "zutil.h",
| ],
| includes = [
| ".",
| ],
| linkstatic = 1,
| visibility = [
| "//visibility:public",
| ],
| )
|
|