aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/pyct/static_analysis/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/pyct/static_analysis/BUILD')
-rw-r--r--tensorflow/contrib/autograph/pyct/static_analysis/BUILD25
1 files changed, 18 insertions, 7 deletions
diff --git a/tensorflow/contrib/autograph/pyct/static_analysis/BUILD b/tensorflow/contrib/autograph/pyct/static_analysis/BUILD
index bcf2dacec2..92eacba3fd 100644
--- a/tensorflow/contrib/autograph/pyct/static_analysis/BUILD
+++ b/tensorflow/contrib/autograph/pyct/static_analysis/BUILD
@@ -19,8 +19,9 @@ py_library(
srcs = [
"activity.py",
"annos.py",
- "cfg.py",
"live_values.py",
+ "liveness.py",
+ "reaching_definitions.py",
"type_info.py",
],
srcs_version = "PY2AND3",
@@ -28,6 +29,7 @@ py_library(
deps = [
"//tensorflow/contrib/autograph/pyct",
"//tensorflow/contrib/autograph/utils",
+ "//tensorflow/python:util",
"@gast_archive//:gast",
],
)
@@ -46,23 +48,32 @@ py_test(
)
py_test(
- name = "cfg_test",
- srcs = ["cfg_test.py"],
+ name = "live_values_test",
+ srcs = ["live_values_test.py"],
srcs_version = "PY2AND3",
tags = ["no_windows"],
deps = [
":static_analysis",
"//tensorflow/contrib/autograph/pyct",
"//tensorflow/python:client_testlib",
- "@gast_archive//:gast",
],
)
py_test(
- name = "live_values_test",
- srcs = ["live_values_test.py"],
+ name = "liveness_test",
+ srcs = ["liveness_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":static_analysis",
+ "//tensorflow/contrib/autograph/pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "reaching_definitions_test",
+ srcs = ["reaching_definitions_test.py"],
srcs_version = "PY2AND3",
- tags = ["no_windows"],
deps = [
":static_analysis",
"//tensorflow/contrib/autograph/pyct",