STT-tensorflow/tensorflow/tools/api/lib/BUILD
A. Unique TensorFlower 034633f23b PY2 removal cleanup
PiperOrigin-RevId: 352106691
Change-Id: I382d53c64f0d29da430b8cb6d2395a2cb281509e
2021-01-15 16:48:57 -08:00

29 lines
646 B
Python

# Helper libraries for TensorFlow API compatibility test.
load(
"//tensorflow/core/platform:build_config.bzl",
"tf_proto_library",
)
package(
default_visibility = ["//tensorflow/tools/api:__subpackages__"],
licenses = ["notice"], # Apache 2.0
)
tf_proto_library(
name = "api_objects_proto",
srcs = ["api_objects.proto"],
)
py_library(
name = "python_object_to_proto_visitor",
srcs = ["python_object_to_proto_visitor.py"],
srcs_version = "PY3",
deps = [
":api_objects_proto_py",
"//tensorflow/python:platform",
"//tensorflow/python:util",
"@six_archive//:six",
],
)