Further BUILD cleanup in tensorflow/contrib/...

PiperOrigin-RevId: 161114057
This commit is contained in:
A. Unique TensorFlower 2017-07-06 12:24:33 -07:00 committed by TensorFlower Gardener
parent e7fc162658
commit 27b15d8b59
3 changed files with 21 additions and 4 deletions

View File

@ -11,10 +11,23 @@ py_library(
deps = [ deps = [
"//tensorflow/contrib/data/python/framework:function", "//tensorflow/contrib/data/python/framework:function",
"//tensorflow/contrib/data/python/util:nest", "//tensorflow/contrib/data/python/util:nest",
"//tensorflow/contrib/util:util_py", "//tensorflow/python:array_ops",
"//tensorflow/python:constant_op",
"//tensorflow/python:control_flow_ops",
"//tensorflow/python:dataset_ops_gen", "//tensorflow/python:dataset_ops_gen",
"//tensorflow/python:framework", "//tensorflow/python:dtypes",
"//tensorflow/python:framework_ops",
"//tensorflow/python:logging_ops",
"//tensorflow/python:math_ops",
"//tensorflow/python:parsing_ops", "//tensorflow/python:parsing_ops",
"//tensorflow/python:platform",
"//tensorflow/python:random_ops",
"//tensorflow/python:random_seed",
"//tensorflow/python:resource_variable_ops",
"//tensorflow/python:sparse_tensor",
"//tensorflow/python:tensor_shape",
"//tensorflow/python:tensor_util",
"//third_party/py/numpy",
], ],
) )

View File

@ -12,6 +12,7 @@ py_library(
srcs_version = "PY2AND3", srcs_version = "PY2AND3",
deps = [ deps = [
"//tensorflow/python:util", "//tensorflow/python:util",
"@six_archive//:six",
], ],
) )
@ -26,7 +27,6 @@ py_test(
"//tensorflow/python:client_testlib", "//tensorflow/python:client_testlib",
"//tensorflow/python:framework_for_generated_wrappers", "//tensorflow/python:framework_for_generated_wrappers",
"//tensorflow/python:math_ops", "//tensorflow/python:math_ops",
"//tensorflow/python:util",
"//third_party/py/numpy", "//third_party/py/numpy",
], ],
) )

View File

@ -122,7 +122,11 @@ py_library(
data = [":python/ops/_single_image_random_dot_stereograms.so"], data = [":python/ops/_single_image_random_dot_stereograms.so"],
srcs_version = "PY2AND3", srcs_version = "PY2AND3",
deps = [ deps = [
":single_image_random_dot_stereograms_ops", ":image_py",
"//tensorflow/contrib/util:util_py",
"//tensorflow/python:framework_ops",
"//tensorflow/python:platform",
"//tensorflow/python:util",
], ],
) )