aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/BUILD
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-04-23 21:19:14 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-23 21:21:38 -0700
commit22f3a97b8b089202f60bb0c7697feb0c8e0713cc (patch)
treed16f95826e4be15bbb3b0f22bed0ca25d3eb5897 /tensorflow/core/BUILD
parent24b7c9a800ab5086d45a7d83ebcd6218424dc9e3 (diff)
Merge changes from github.
PiperOrigin-RevId: 194031845
Diffstat (limited to 'tensorflow/core/BUILD')
-rw-r--r--tensorflow/core/BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD
index a2ff29724b..ba1fd41565 100644
--- a/tensorflow/core/BUILD
+++ b/tensorflow/core/BUILD
@@ -145,6 +145,7 @@ load(
"if_static",
)
load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
+load("@io_bazel_rules_closure//closure:defs.bzl", "closure_proto_library")
load(
"//third_party/mkl:build_defs.bzl",
"if_mkl",
@@ -247,6 +248,15 @@ tf_nano_proto_library(
deps = [":protos_all_cc"],
)
+proto_library(
+ name = "example_protos",
+ srcs = [
+ "example/example.proto",
+ "example/feature.proto",
+ ],
+ visibility = ["//visibility:public"],
+)
+
exports_files([
"framework/types.proto",
])
@@ -4066,3 +4076,9 @@ alias(
actual = ":mobile_srcs",
visibility = ["//visibility:public"],
)
+
+closure_proto_library(
+ name = "example_protos_closure",
+ visibility = ["//visibility:public"],
+ deps = [":example_protos"],
+)