Enable auto-generating sources rules

This commit is contained in:
Jeff Grafton
2017-01-03 14:40:41 -08:00
parent f8288ed1f3
commit 20d221f75c
1002 changed files with 14557 additions and 1 deletions

View File

@@ -56,3 +56,19 @@ docker_build(
],
repository = "gcr.io/google-containers",
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//build/debs:all-srcs",
],
tags = ["automanaged"],
)

View File

@@ -154,3 +154,16 @@ k8s_deb(
The Container Networking Interface tools for provisioning container networks.
""",
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)