aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs/zlib.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/systemlibs/zlib.BUILD')
-rw-r--r--third_party/systemlibs/zlib.BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/systemlibs/zlib.BUILD b/third_party/systemlibs/zlib.BUILD
new file mode 100644
index 0000000000..69462ae6cb
--- /dev/null
+++ b/third_party/systemlibs/zlib.BUILD
@@ -0,0 +1,12 @@
+licenses(["notice"]) # BSD/MIT-like license (for zlib)
+
+filegroup(
+ name = "zlib.h",
+ visibility = ["//visibility:public"],
+)
+
+cc_library(
+ name = "zlib",
+ linkopts = ["-lz"],
+ visibility = ["//visibility:public"],
+)