blob: 7c82223c6ce47b1350b645776f439f7a6410bdb5 [file] [log] [blame]
load("@rules_python//python:defs.bzl", "py_test")
licenses(["notice"]) # Apache 2.0
filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = [
"//src/test/java/com/google/devtools/build/lib:__subpackages__",
"//tools:__pkg__",
],
)
filegroup(
name = "embedded_tools_srcs",
srcs = [
"BUILD.tools",
"java_rules_skylark.bzl",
"test_rules.bzl",
"test_rules_private.bzl",
"utilities.bzl",
],
visibility = ["//visibility:public"],
)
py_test(
name = "test_rules_test",
srcs = ["test_rules_test.py"],
data = [
"test_rules.bzl",
"test_rules_private.bzl",
],
deps = ["//src/test/py/bazel:test_base"],
)