blob: a50f388e9ed980d816fd9b1cbbede0be8a975cc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package(licenses = ["notice"])
# The images filegroup is definitely not a hermetic target, and requires Make
# to do anything meaningful with. However, this will be slurped up and used by
# the tools/installer/images.sh installer, which will ensure that all required
# images are available locally when running vm_tests.
filegroup(
name = "images",
srcs = glob(["**"]),
visibility = ["//tools/installers:__pkg__"],
)
|