STT-tensorflow/zlib.BUILD
A. Unique TensorFlower dedaa43945 Add a new contrib/avro directory and the initial schema that resembles
tf.train.Example.
Change: 123445810
2016-05-27 13:02:25 -07:00

13 lines
281 B
Plaintext

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],
)