mirror of
https://github.com/zebrajr/tensorflow.git
synced 2026-01-15 12:15:41 +00:00
- 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
29 lines
573 B
Python
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",
|
|
],
|
|
)
|