aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/saved_model
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-08-16 18:56:07 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-08-16 19:00:02 -0700
commite5e91b4a25fb40df09a7ff9f9a4ab148e38c7d1c (patch)
tree170be7c80f72901c3e6bb5db06997a9600d311da /tensorflow/python/saved_model
parentf119dd4369f14017a3aa9ba00a7839df7976d5b1 (diff)
BUILD cleanup in tensorflow/python/...
PiperOrigin-RevId: 165530192
Diffstat (limited to 'tensorflow/python/saved_model')
-rw-r--r--tensorflow/python/saved_model/BUILD15
1 files changed, 13 insertions, 2 deletions
diff --git a/tensorflow/python/saved_model/BUILD b/tensorflow/python/saved_model/BUILD
index 775232c19f..39c6439811 100644
--- a/tensorflow/python/saved_model/BUILD
+++ b/tensorflow/python/saved_model/BUILD
@@ -27,6 +27,7 @@ py_library(
":signature_def_utils",
":tag_constants",
":utils",
+ "//tensorflow/python:util",
],
)
@@ -34,18 +35,21 @@ py_library(
name = "constants",
srcs = ["constants.py"],
srcs_version = "PY2AND3",
+ deps = ["//tensorflow/python:util"],
)
py_library(
name = "signature_constants",
srcs = ["signature_constants.py"],
srcs_version = "PY2AND3",
+ deps = ["//tensorflow/python:util"],
)
py_library(
name = "tag_constants",
srcs = ["tag_constants.py"],
srcs_version = "PY2AND3",
+ deps = ["//tensorflow/python:util"],
)
py_library(
@@ -79,6 +83,7 @@ py_library(
"//tensorflow/core:protos_all_py",
"//tensorflow/python:framework_for_generated_wrappers",
"//tensorflow/python:lib",
+ "//tensorflow/python:platform",
"//tensorflow/python:training",
"//tensorflow/python:util",
],
@@ -93,8 +98,9 @@ py_library(
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:control_flow_ops",
- "//tensorflow/python:data_flow_ops",
"//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:lookup_ops",
+ "//tensorflow/python:util",
"//tensorflow/python:variables",
],
)
@@ -114,7 +120,6 @@ py_test(
":main_op",
":signature_def_utils",
":tag_constants",
- ":utils",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:client",
"//tensorflow/python:client_testlib",
@@ -140,6 +145,8 @@ py_library(
deps = [
"//tensorflow/core:protos_all_py",
"//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:sparse_tensor",
+ "//tensorflow/python:util",
],
)
@@ -151,9 +158,11 @@ py_test(
visibility = ["//visibility:private"],
deps = [
":utils",
+ "//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:sparse_tensor",
],
)
@@ -168,6 +177,7 @@ py_library(
":signature_constants",
":utils",
"//tensorflow/core:protos_all_py",
+ "//tensorflow/python:util",
],
)
@@ -181,6 +191,7 @@ py_test(
":signature_constants",
":signature_def_utils",
":utils",
+ "//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:framework_for_generated_wrappers",