STT-tensorflow/tensorflow/python/autograph/BUILD
Dan Moldovan c68f4bf21c Add a blank py_strict_library that expands to the normal py_library. Use it in autograph/BUILD.
PiperOrigin-RevId: 291943552
Change-Id: I782be6e676f5d0833b46df11b6263530873b60d0
2020-01-28 09:02:59 -08:00

35 lines
777 B
Python

load("//tensorflow:tensorflow.bzl", "py_strict_library")
package(
licenses = ["notice"], # Apache 2.0
)
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
),
visibility = ["//tensorflow:__subpackages__"],
)
py_strict_library(
name = "autograph",
srcs = [
"__init__.py",
],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
deps = [
"//tensorflow/python:util",
"//tensorflow/python/autograph/core",
"//tensorflow/python/autograph/impl",
"//tensorflow/python/autograph/lang",
"//tensorflow/python/autograph/operators",
"//tensorflow/python/autograph/utils",
],
)