aboutsummaryrefslogtreecommitdiffhomepage
path: root/zlib.BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-27 11:50:16 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-27 13:02:25 -0700
commitdedaa43945a2f90e5b6a815401f6991a64c7e947 (patch)
tree988038162691bb748174130cb7c4de9242b1d306 /zlib.BUILD
parentc922ed63e36b62fe5b57a4340373555b05d2cd91 (diff)
Add a new contrib/avro directory and the initial schema that resembles
tf.train.Example. Change: 123445810
Diffstat (limited to 'zlib.BUILD')
-rw-r--r--zlib.BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/zlib.BUILD b/zlib.BUILD
new file mode 100644
index 0000000000..9e0ce53878
--- /dev/null
+++ b/zlib.BUILD
@@ -0,0 +1,12 @@
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # BSD/MIT-like license (for zlib)
+
+prefix_dir = "zlib-1.2.8"
+
+cc_library(
+ name = "zlib",
+ srcs = glob([prefix_dir + "/*.c"]),
+ hdrs = glob([prefix_dir + "/*.h"]),
+ includes = [prefix_dir],
+)