aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph/pyct/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/autograph/pyct/BUILD')
-rw-r--r--tensorflow/python/autograph/pyct/BUILD163
1 files changed, 163 insertions, 0 deletions
diff --git a/tensorflow/python/autograph/pyct/BUILD b/tensorflow/python/autograph/pyct/BUILD
new file mode 100644
index 0000000000..ddadc6b96e
--- /dev/null
+++ b/tensorflow/python/autograph/pyct/BUILD
@@ -0,0 +1,163 @@
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+load("//tensorflow:tensorflow.bzl", "py_test")
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
+py_library(
+ name = "pyct",
+ srcs = [
+ "__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",
+ "templates.py",
+ "transformer.py",
+ ],
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+ deps = [
+ "@astor_archive//:astor",
+ "@gast_archive//:gast",
+ "@six_archive//:six",
+ "@termcolor_archive//:termcolor",
+ # TODO(mdan): Remove this dependency.
+ "//tensorflow/python:util",
+ ],
+)
+
+py_test(
+ name = "anno_test",
+ srcs = ["anno_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "ast_util_test",
+ srcs = ["ast_util_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)
+
+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",
+ tags = ["no_windows"],
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)
+
+py_test(
+ name = "inspect_utils_test",
+ srcs = ["inspect_utils_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)
+
+py_test(
+ name = "origin_info_test",
+ srcs = ["origin_info_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "parser_test",
+ srcs = ["parser_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "pretty_printer_test",
+ srcs = ["pretty_printer_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "qual_names_test",
+ srcs = ["qual_names_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
+py_test(
+ name = "templates_test",
+ srcs = ["templates_test.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)
+
+py_test(
+ name = "transformer_test",
+ srcs = ["transformer_test.py"],
+ srcs_version = "PY2AND3",
+ tags = ["no_windows"],
+ deps = [
+ ":pyct",
+ "//tensorflow/python:client_testlib",
+ "@gast_archive//:gast",
+ ],
+)