aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2018-03-13 15:51:36 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-13 17:06:54 -0700
commitd57f0213bff0c676b06f4b3f0842ac282738c254 (patch)
treead1cf51ae4a47a74a2c56426de2246c3676943f6 /tensorflow/BUILD
parent86dd46a3c65c3bcdf92b7ea3ab33bc99ece58236 (diff)
Add test for API generated with tf_export calls to api_compatibility_test.py.
Also, fix remaining differences between this new API and the current TensorFlow API. PiperOrigin-RevId: 188943768
Diffstat (limited to 'tensorflow/BUILD')
-rw-r--r--tensorflow/BUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
index a4e7602bea..957528cecb 100644
--- a/tensorflow/BUILD
+++ b/tensorflow/BUILD
@@ -830,3 +830,14 @@ py_library(
visibility = ["//visibility:public"],
deps = ["//tensorflow/python"],
)
+
+py_library(
+ name = "experimental_tensorflow_py",
+ srcs = ["experimental_api.py"],
+ srcs_version = "PY2AND3",
+ visibility = ["//tensorflow/tools/api/tests:__subpackages__"],
+ deps = [
+ "//tensorflow/python",
+ "//tensorflow/tools/api/generator:python_api",
+ ],
+)