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.
40 lines
753 B
40 lines
753 B
4 months ago
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
licenses(["notice"])
|
||
|
|
||
|
cc_library(
|
||
|
name = "zlib",
|
||
|
srcs = [
|
||
|
"adler32.c",
|
||
|
"compress.c",
|
||
|
"crc32.c",
|
||
|
"crc32.h",
|
||
|
"deflate.c",
|
||
|
"deflate.h",
|
||
|
"gzclose.c",
|
||
|
"gzguts.h",
|
||
|
"gzlib.c",
|
||
|
"gzread.c",
|
||
|
"gzwrite.c",
|
||
|
"infback.c",
|
||
|
"inffast.c",
|
||
|
"inffast.h",
|
||
|
"inffixed.h",
|
||
|
"inflate.c",
|
||
|
"inflate.h",
|
||
|
"inftrees.c",
|
||
|
"inftrees.h",
|
||
|
"trees.c",
|
||
|
"trees.h",
|
||
|
"uncompr.c",
|
||
|
"zutil.c",
|
||
|
"zutil.h",
|
||
|
],
|
||
|
hdrs = [
|
||
|
"zconf.h",
|
||
|
"zlib.h",
|
||
|
],
|
||
|
copts = ["-Wno-implicit-function-declaration"],
|
||
|
includes = ["."],
|
||
|
)
|