blob: d78a265ca97574a37288398352722f3057e5cd5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Installers for use by the tools/vm_test rules.
package(
default_visibility = ["//:sandbox"],
licenses = ["notice"],
)
filegroup(
name = "runsc",
srcs = ["//runsc"],
)
sh_binary(
name = "head",
srcs = ["head.sh"],
data = [":runsc"],
)
sh_binary(
name = "master",
srcs = ["master.sh"],
)
sh_binary(
name = "shim",
srcs = ["shim.sh"],
)
|