1cc_library( 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 ".", 31 ], 32 linkstatic = 1, 33 visibility = [ 34 "//visibility:public", 35 ], 36) 37