Add test_deps to rules/private (#534)
This pattern was missed when rules/private was added.
This commit is contained in:
parent
fa66e6b15b
commit
5c071b5006
|
@ -68,6 +68,7 @@ filegroup(
|
|||
testonly = True,
|
||||
srcs = [
|
||||
"BUILD",
|
||||
"//rules/private:test_deps",
|
||||
] + glob(["*.bzl"]),
|
||||
visibility = ["//:__subpackages__"], # Needs skylib's root BUILD file for default_applicable_licenses
|
||||
)
|
||||
|
|
|
@ -49,6 +49,17 @@ bzl_library(
|
|||
srcs = ["maprule_util.bzl"],
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "test_deps",
|
||||
testonly = True,
|
||||
srcs = [
|
||||
"BUILD",
|
||||
] + glob(["*.bzl"]),
|
||||
visibility = [
|
||||
"//rules:__pkg__",
|
||||
],
|
||||
)
|
||||
|
||||
# The files needed for distribution
|
||||
filegroup(
|
||||
name = "distribution",
|
||||
|
|
Loading…
Reference in New Issue