You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
635 B
36 lines
635 B
cc_library( |
|
name = "zlib", |
|
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", |
|
], |
|
)
|
|
|