android13/external/rust/crates/grpcio-sys/grpc/third_party/zlib.BUILD

37 lines
635 B
Plaintext
Raw Normal View History

2024-06-22 08:45:49 -04:00
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",
],
)