-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBUILD.bazel
52 lines (48 loc) · 1.63 KB
/
BUILD.bazel
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:resolve proto build/bazel/remote/execution/v2/remote_execution.proto @com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:remote_execution_proto
# gazelle:resolve proto go build/bazel/remote/execution/v2/remote_execution.proto @com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library
# gazelle:prefix github.com/dashjay/baize
gazelle(
name = "gazelle",
command = "fix",
)
filegroup(
name = "package-srcs",
srcs = glob(
["**"],
exclude = [
"bazel-*/**",
".git/**",
],
),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//build:all-srcs",
"//cmd/baize-executor:all-srcs",
"//cmd/baize-server:all-srcs",
"//cmd/debug-tools:all-srcs",
"//cmd/remote-cache:all-srcs",
"//hack:all-srcs",
"//pkg/baize:all-srcs",
"//pkg/caches:all-srcs",
"//pkg/config:all-srcs",
"//pkg/copy_from_buildbuddy/utils/disk:all-srcs",
"//pkg/copy_from_buildbuddy/utils/hash:all-srcs",
"//pkg/copy_from_buildbuddy/utils/lru:all-srcs",
"//pkg/copy_from_buildbuddy/utils/random:all-srcs",
"//pkg/copy_from_buildbuddy/utils/status:all-srcs",
"//pkg/executor:all-srcs",
"//pkg/interfaces:all-srcs",
"//pkg/proto:all-srcs",
"//pkg/scheduler:all-srcs",
"//pkg/utils:all-srcs",
"//third_party:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)