aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/BUILD
diff options
context:
space:
mode:
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"],
+)