Create BUILD files and corresponding targets for tensorflow/core/api_def/python_api/BUILD.

PiperOrigin-RevId: 341724236
Change-Id: I65a4a6abebec4b98f2dc76062213c9b62e55b83f
This commit is contained in:
Amit Patankar 2020-11-10 16:40:43 -08:00 committed by TensorFlower Gardener
parent 658b303f17
commit e07f05f816
2 changed files with 17 additions and 2 deletions

View File

@ -33,9 +33,9 @@ filegroup(
visibility = ["//tensorflow:internal"],
)
filegroup(
alias(
name = "python_api_def",
srcs = glob(["python_api/*"]),
actual = "//tensorflow/core/api_def/python_api:python_api_def",
visibility = ["//tensorflow:internal"],
)

View File

@ -0,0 +1,15 @@
# Description:
# Provides ApiDef access and ApiDef validation for TensorFlow python.
load("//tensorflow:tensorflow.bzl", "filegroup")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
filegroup(
name = "python_api_def",
srcs = glob(["*"]),
visibility = ["//tensorflow:internal"],
)