Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 1 | cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 2 | 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 = [ | ||||
30 | "include", | ||||
31 | ], | ||||
32 | linkstatic = 1, | ||||
33 | visibility = [ | ||||
34 | "//visibility:public", | ||||
35 | ], | ||||
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 36 | ) |