forked from cert-manager/testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
32 lines (29 loc) · 700 Bytes
/
BUILD.bazel
File metadata and controls
32 lines (29 loc) · 700 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
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix github.com/example/project
gazelle(name = "gazelle")
filegroup(
name = "package-srcs",
srcs = glob(
["**"],
exclude = [
"bazel-*/**",
".git/**",
],
),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//config:all-srcs",
"//hack:all-srcs",
"//images/bazelbuild:all-srcs",
"//images/builder:all-srcs",
"//prow:all-srcs",
"//tools/image-bumper:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)