Adding missing build deps for various keras build targets.

PiperOrigin-RevId: 334644447
Change-Id: I0089a474c0b1c88e615bc3c9853f20d9965d6be0
This commit is contained in:
Scott Zhu 2020-09-30 11:38:38 -07:00 committed by TensorFlower Gardener
parent b6e18e5dfa
commit 8e14fdb6a2
4 changed files with 10 additions and 0 deletions

View File

@ -360,6 +360,7 @@ tf_py_test(
deps = [ deps = [
":applications", ":applications",
"//tensorflow/python:client_testlib", "//tensorflow/python:client_testlib",
"//tensorflow/python/keras",
"@absl_py//absl/testing:parameterized", "@absl_py//absl/testing:parameterized",
], ],
) )

View File

@ -255,6 +255,7 @@ tf_py_test(
"//tensorflow/python:client_testlib", "//tensorflow/python:client_testlib",
"//tensorflow/python:dtypes", "//tensorflow/python:dtypes",
"//tensorflow/python:lookup_ops", "//tensorflow/python:lookup_ops",
"//tensorflow/python/keras",
"//tensorflow/python/keras:backend", "//tensorflow/python/keras:backend",
"//tensorflow/python/keras:combinations", "//tensorflow/python/keras:combinations",
], ],
@ -273,6 +274,7 @@ tf_py_test(
deps = [ deps = [
":data_adapter", ":data_adapter",
"//tensorflow/python:client_testlib", "//tensorflow/python:client_testlib",
"//tensorflow/python/keras",
"//third_party/py/numpy", "//third_party/py/numpy",
], ],
) )
@ -572,6 +574,7 @@ tf_py_test(
deps = [ deps = [
":base_layer", ":base_layer",
":engine", ":engine",
"//tensorflow/python/keras",
"//tensorflow/python/keras:combinations", "//tensorflow/python/keras:combinations",
"//tensorflow/python/keras:testing_utils", "//tensorflow/python/keras:testing_utils",
"//tensorflow/python/keras/utils:layer_utils", "//tensorflow/python/keras/utils:layer_utils",
@ -600,6 +603,7 @@ tf_py_test(
"//tensorflow/python:state_ops", "//tensorflow/python:state_ops",
"//tensorflow/python:tensor_shape", "//tensorflow/python:tensor_shape",
"//tensorflow/python/eager:context", "//tensorflow/python/eager:context",
"//tensorflow/python/keras",
"//tensorflow/python/keras:backend", "//tensorflow/python/keras:backend",
"//tensorflow/python/keras:combinations", "//tensorflow/python/keras:combinations",
"//tensorflow/python/keras:initializers", "//tensorflow/python/keras:initializers",
@ -627,6 +631,7 @@ tf_py_test(
deps = [ deps = [
":base_layer", ":base_layer",
":engine", ":engine",
"//tensorflow/python/keras",
"//tensorflow/python/keras:testing_utils", "//tensorflow/python/keras:testing_utils",
"//tensorflow/python/keras/utils:layer_utils", "//tensorflow/python/keras/utils:layer_utils",
], ],
@ -663,6 +668,7 @@ tf_py_test(
"//tensorflow/python:variables", "//tensorflow/python:variables",
"//tensorflow/python/eager:context", "//tensorflow/python/eager:context",
"//tensorflow/python/eager:def_function", "//tensorflow/python/eager:def_function",
"//tensorflow/python/keras",
"//tensorflow/python/keras:backend", "//tensorflow/python/keras:backend",
"//tensorflow/python/keras:combinations", "//tensorflow/python/keras:combinations",
"//tensorflow/python/keras:regularizers", "//tensorflow/python/keras:regularizers",

View File

@ -54,7 +54,9 @@ py_library(
":recurrent_v2", ":recurrent_v2",
":rnn_cell_wrapper_v2", ":rnn_cell_wrapper_v2",
":wrappers", ":wrappers",
"//tensorflow/python/keras/feature_column",
"//tensorflow/python/keras/layers/preprocessing", "//tensorflow/python/keras/layers/preprocessing",
"//tensorflow/python/keras/premade",
"//tensorflow/python/keras/utils:tf_utils", "//tensorflow/python/keras/utils:tf_utils",
], ],
) )

View File

@ -31,6 +31,7 @@ py_library(
":sequence", ":sequence",
":text", ":text",
":timeseries", ":timeseries",
"//tensorflow/python/keras/utils:all_utils",
], ],
) )