forked from bazel-contrib/rules_img
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
33 lines (29 loc) · 709 Bytes
/
Copy pathBUILD.bazel
File metadata and controls
33 lines (29 loc) · 709 Bytes
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
28
29
30
31
32
33
exports_files(["MODULE.bazel"])
# gazelle:prefix github.com/bazel-contrib/rules_img
filegroup(
name = "all_files",
srcs = [
"BUILD.bazel",
"LICENSE",
"MODULE.bazel",
],
visibility = ["//img/private/release:__subpackages__"],
)
filegroup(
name = "tool_source_files",
srcs = glob(
["img_tool/**"],
allow_empty = True,
exclude = [
"img_tool/.bazelrc.common",
"img_tool/.bazelrc",
"img_tool/.vscode/**",
"img_tool/tools/**",
],
),
visibility = ["//img/private/release:__subpackages__"],
)
exports_files([
".bcr/metadata.template.json",
"prebuilt_lockfile.json",
])