aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/pyct/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/pyct/BUILD')
-rw-r--r--tensorflow/contrib/autograph/pyct/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/tensorflow/contrib/autograph/pyct/BUILD b/tensorflow/contrib/autograph/pyct/BUILD
index 8f09689fe9..f77a6ab392 100644
--- a/tensorflow/contrib/autograph/pyct/BUILD
+++ b/tensorflow/contrib/autograph/pyct/BUILD
@@ -22,8 +22,10 @@ py_library(
"__init__.py",
"anno.py",
"ast_util.py",
+ "cfg.py",
"compiler.py",
"inspect_utils.py",
+ "origin_info.py",
"parser.py",
"pretty_printer.py",
"qual_names.py",
@@ -64,6 +66,17 @@ py_test(
)
py_test(
+ name = "cfg_test",
+ srcs = ["cfg_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)
+
+py_test(
name = "compiler_test",
srcs = ["compiler_test.py"],
srcs_version = "PY2AND3",