Files
tensorflow/BUILD
Manjunath Kudlur 63ad7054ad Replace dependency on entire proto library with just the headers for contrib.
- Linking a version of the entire proto library with every .so is wasteful.
- Causes duplicate destruction of the static initialized objects causing
non-deterministic crashes.
Change: 147220106
2017-02-10 18:06:48 -08:00

29 lines
573 B
Python

# Description:
# TensorFlow is an open source software library for numerical computation using
# data flow graphs.
package(
default_visibility = [
"//tensorflow:internal",
"//tensorflow_models:__subpackages__",
],
)
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
load(
"//tensorflow:tensorflow.bzl",
"cc_header_only_library",
)
cc_header_only_library(
name = "protobuf_headers",
includes = ["external/protobuf/src"],
visibility = ["//visibility:public"],
deps = [
"@protobuf//:protobuf",
],
)