blob: a71c85fa98da4a1131f0c467371319f680992e69 [file] [log] [blame]
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +02001cc_library(
Nicolas "Pixel" Nobled58c3752016-10-20 22:30:16 +02002 name = "z",
3 srcs = [
4 "adler32.c",
5 "compress.c",
6 "crc32.c",
7 "deflate.c",
8 "infback.c",
9 "inffast.c",
10 "inflate.c",
11 "inftrees.c",
12 "trees.c",
13 "uncompr.c",
14 "zutil.c",
15 ],
16 hdrs = [
17 "crc32.h",
18 "deflate.h",
19 "gzguts.h",
20 "inffast.h",
21 "inffixed.h",
22 "inflate.h",
23 "inftrees.h",
24 "trees.h",
25 "zconf.h",
26 "zlib.h",
27 "zutil.h",
28 ],
29 includes = [
Adele Zhouc8bf2da2017-11-29 09:59:34 -080030 ".",
Nicolas "Pixel" Nobled58c3752016-10-20 22:30:16 +020031 ],
32 linkstatic = 1,
33 visibility = [
34 "//visibility:public",
35 ],
Nicolas "Pixel" Noble31d11db2016-10-20 09:29:46 +020036)