Files
tensorflow--tensorflow/tensorflow/python/autograph/pyct/testing/BUILD
T
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

55 lines
1.1 KiB
Python

load("@xla//third_party/rules_python/python:py_library.bzl", "py_library")
load("//tensorflow:tensorflow.bzl", "py_test")
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
licenses = ["notice"],
)
py_library(
name = "codegen",
srcs = [
"codegen.py",
],
strict_deps = True,
visibility = ["//visibility:public"],
deps = [
"//tensorflow/python/autograph/pyct:templates",
"//third_party/py/numpy",
"@pypi//gast",
],
)
py_library(
name = "decorators",
srcs = ["decorators.py"],
strict_deps = True,
visibility = ["//visibility:public"],
)
py_library(
name = "basic_definitions",
srcs = ["basic_definitions.py"],
strict_deps = True,
visibility = ["//visibility:public"],
)
py_test(
name = "codegen_test",
size = "large",
srcs = ["codegen_test.py"],
strict_deps = True,
tags = [
"manual",
"no_windows",
"nomsan",
"notap",
],
deps = [
":codegen",
#internal proto upb dep
"//third_party/py/numpy",
"//tensorflow/python/platform:client_testlib",
],
)