aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorflow.bzl
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-26 03:21:43 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-26 03:24:15 -0700
commit59a4b484f9f98be835260825a82eb303a2ee47fd (patch)
tree690875121d1d2a97ae0d17425e8f214ce4dde1b1 /tensorflow/tensorflow.bzl
parent521606da457c7ba9185b4742bd015fd63fe5dfd4 (diff)
Clarify limitation of `deps` in tf_gen_op_wrapper_py
PiperOrigin-RevId: 194372273
Diffstat (limited to 'tensorflow/tensorflow.bzl')
-rw-r--r--tensorflow/tensorflow.bzl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/tensorflow.bzl b/tensorflow/tensorflow.bzl
index a9ddd4fc60..e5cc886b32 100644
--- a/tensorflow/tensorflow.bzl
+++ b/tensorflow/tensorflow.bzl
@@ -509,7 +509,9 @@ def tf_gen_op_wrappers_cc(name,
# hidden: Optional list of ops names to make private in the Python module.
# It is invalid to specify both "hidden" and "op_whitelist".
# visibility: passed to py_library.
-# deps: list of dependencies for the generated target.
+# deps: list of dependencies for the intermediate tool used to generate the
+# python target. NOTE these `deps` are not applied to the final python
+# library target itself.
# require_shape_functions: leave this as False.
# hidden_file: optional file that contains a list of op names to make private
# in the generated Python module. Each op name should be on a line by