aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib.BUILD
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-01-09 15:14:24 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2017-01-09 15:14:24 -0800
commit9dc0ca0a7099093b4840b845c32508cb430c60ad (patch)
tree135bbdbadb8938fa9ac86a2a1d30953f0ebfc7a7 /third_party/zlib.BUILD
parent56610d4706593cca120ac62c41489438ae589293 (diff)
parent6cf58c81731343e0ffb134febd3e576425399e5e (diff)
Merge branch 'master' of https://github.com/grpc/grpc into ruby_advanced_interop_client_side
Diffstat (limited to 'third_party/zlib.BUILD')
-rw-r--r--third_party/zlib.BUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/third_party/zlib.BUILD b/third_party/zlib.BUILD
new file mode 100644
index 0000000000..7879a81c68
--- /dev/null
+++ b/third_party/zlib.BUILD
@@ -0,0 +1,36 @@
+cc_library(
+ name = "z",
+ 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 = [
+ "include",
+ ],
+ linkstatic = 1,
+ visibility = [
+ "//visibility:public",
+ ],
+)