aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-06-21 15:05:34 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-06-21 15:10:20 -0700
commit0a379aefe4f76966fe3cca0bb91e1c5406019451 (patch)
tree804cdab0e295bea994d35c0ad7e5981656be1c6f /tensorflow/examples
parent12c4775b378fefe1351c454d9516775663559c4f (diff)
Further BUILD cleanup
PiperOrigin-RevId: 159749869
Diffstat (limited to 'tensorflow/examples')
-rw-r--r--tensorflow/examples/image_retraining/BUILD7
-rw-r--r--tensorflow/examples/multibox_detector/BUILD3
-rw-r--r--tensorflow/examples/saved_model/BUILD2
-rw-r--r--tensorflow/examples/tutorials/estimators/BUILD1
-rw-r--r--tensorflow/examples/tutorials/layers/BUILD2
-rw-r--r--tensorflow/examples/tutorials/monitors/BUILD1
-rw-r--r--tensorflow/examples/wav_to_spectrogram/BUILD4
7 files changed, 19 insertions, 1 deletions
diff --git a/tensorflow/examples/image_retraining/BUILD b/tensorflow/examples/image_retraining/BUILD
index 394c413b33..c8c136ac14 100644
--- a/tensorflow/examples/image_retraining/BUILD
+++ b/tensorflow/examples/image_retraining/BUILD
@@ -18,6 +18,7 @@ py_binary(
"//tensorflow:tensorflow_py",
"//tensorflow/python:framework",
"//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:graph_util",
"//tensorflow/python:platform",
"//tensorflow/python:util",
"//third_party/py/numpy",
@@ -50,10 +51,16 @@ py_test(
],
srcs_version = "PY2AND3",
deps = [
+ ":label_image",
":retrain",
"//tensorflow:tensorflow_py",
"//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:graph_util",
+ "//tensorflow/python:platform",
"//tensorflow/python:platform_test",
+ "//tensorflow/python:tensor_shape",
+ "//tensorflow/python:util",
+ "//third_party/py/numpy",
],
)
diff --git a/tensorflow/examples/multibox_detector/BUILD b/tensorflow/examples/multibox_detector/BUILD
index 5d0c769007..24c7040ac1 100644
--- a/tensorflow/examples/multibox_detector/BUILD
+++ b/tensorflow/examples/multibox_detector/BUILD
@@ -21,7 +21,10 @@ cc_binary(
linkopts = ["-lm"],
deps = [
"//tensorflow/cc:cc_ops",
+ "//tensorflow/core:core_cpu",
+ "//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
+ "//tensorflow/core:lib",
"//tensorflow/core:tensorflow",
],
)
diff --git a/tensorflow/examples/saved_model/BUILD b/tensorflow/examples/saved_model/BUILD
index 844e99dcd4..72066eabc3 100644
--- a/tensorflow/examples/saved_model/BUILD
+++ b/tensorflow/examples/saved_model/BUILD
@@ -32,5 +32,7 @@ py_binary(
srcs_version = "PY2AND3",
deps = [
"//tensorflow:tensorflow_py",
+ "//tensorflow/python:lib",
+ "//tensorflow/python/saved_model:main_op",
],
)
diff --git a/tensorflow/examples/tutorials/estimators/BUILD b/tensorflow/examples/tutorials/estimators/BUILD
index 0ff606831c..ecbc1a431d 100644
--- a/tensorflow/examples/tutorials/estimators/BUILD
+++ b/tensorflow/examples/tutorials/estimators/BUILD
@@ -16,6 +16,7 @@ py_binary(
srcs_version = "PY2AND3",
deps = [
"//tensorflow:tensorflow_py",
+ "//tensorflow/contrib/learn",
"//third_party/py/numpy",
],
)
diff --git a/tensorflow/examples/tutorials/layers/BUILD b/tensorflow/examples/tutorials/layers/BUILD
index ba9e1f60e1..7621beec48 100644
--- a/tensorflow/examples/tutorials/layers/BUILD
+++ b/tensorflow/examples/tutorials/layers/BUILD
@@ -16,6 +16,8 @@ py_binary(
srcs_version = "PY2AND3",
deps = [
"//tensorflow:tensorflow_py",
+ "//tensorflow/contrib/learn",
+ "//third_party/py/numpy",
],
)
diff --git a/tensorflow/examples/tutorials/monitors/BUILD b/tensorflow/examples/tutorials/monitors/BUILD
index 6aa0b7ee47..4220e8144d 100644
--- a/tensorflow/examples/tutorials/monitors/BUILD
+++ b/tensorflow/examples/tutorials/monitors/BUILD
@@ -20,7 +20,6 @@ py_binary(
srcs_version = "PY2AND3",
deps = [
"//tensorflow:tensorflow_py",
- "//tensorflow/contrib/learn",
"//third_party/py/numpy",
],
)
diff --git a/tensorflow/examples/wav_to_spectrogram/BUILD b/tensorflow/examples/wav_to_spectrogram/BUILD
index 5923fa5929..dc29236b08 100644
--- a/tensorflow/examples/wav_to_spectrogram/BUILD
+++ b/tensorflow/examples/wav_to_spectrogram/BUILD
@@ -19,7 +19,10 @@ cc_library(
hdrs = ["wav_to_spectrogram.h"],
deps = [
"//tensorflow/cc:cc_ops",
+ "//tensorflow/core:core_cpu",
+ "//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
+ "//tensorflow/core:lib",
"//tensorflow/core:tensorflow",
],
)
@@ -30,6 +33,7 @@ cc_binary(
deps = [
":wav_to_spectrogram_lib",
"//tensorflow/core:framework_internal",
+ "//tensorflow/core:lib",
],
)