forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
288 lines (259 loc) · 7.69 KB
/
BUILD
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# Bazel - Google's Build System
load("//tools/distributions:distribution_rules.bzl", "distrib_jar_filegroup")
load("@rules_python//python:defs.bzl", "py_binary")
load("@rules_license//rules:license.bzl", "license")
load("@rules_pkg//pkg:tar.bzl", "pkg_tar")
package(default_visibility = ["//scripts/release:__pkg__"])
license(
name = "license",
package_name = "bazelbuild/bazel",
copyright_notice = "Copyright © 2014 The Bazel Authors. All rights reserved.",
license_kinds = [
"@rules_license//licenses/spdx:Apache-2.0",
],
license_text = "LICENSE",
)
exports_files(["LICENSE"])
filegroup(
name = "srcs",
srcs = glob(
["*"],
exclude = [
"WORKSPACE", # Needs to be filtered.
"bazel-*", # convenience symlinks
"out", # IntelliJ with setup-intellij.sh
"output", # output of compile.sh
".*", # mainly .git* files
],
) + [
"//:WORKSPACE.filtered",
"//examples:srcs",
"//scripts:srcs",
"//site:srcs",
"//src:srcs",
"//src/main/java/com/google/devtools/build/docgen/release:srcs",
"//src/main/starlark/tests/builtins_bzl:srcs",
"//third_party:srcs",
"//tools:srcs",
] + glob([".bazelci/*"]) + [
".bazelrc",
".bazelversion",
],
applicable_licenses = ["@io_bazel//:license"],
visibility = ["//src/test/shell/bazel:__pkg__"],
)
filegroup(
name = "git",
srcs = glob(
[".git/**"],
allow_empty = True,
exclude = [".git/**/*[*"], # gitk creates temp files with []
),
)
filegroup(
name = "dummy",
visibility = ["//visibility:public"],
)
filegroup(
name = "workspace-file",
srcs = [
":WORKSPACE",
":distdir.bzl",
":distdir_deps.bzl",
],
visibility = [
"//src/test/shell/bazel:__subpackages__",
],
)
filegroup(
name = "changelog-file",
srcs = [":CHANGELOG.md"],
visibility = [
"//scripts/packages:__subpackages__",
],
)
genrule(
name = "filtered_WORKSPACE",
srcs = ["WORKSPACE"],
outs = ["WORKSPACE.filtered"],
cmd = "\n".join([
"cp $< $@",
# Comment out the android repos if they exist.
"sed -i.bak -e 's/^android_sdk_repository/# android_sdk_repository/' -e 's/^android_ndk_repository/# android_ndk_repository/' $@",
]),
)
pkg_tar(
name = "bootstrap-jars",
srcs = [
"@blake3",
"@com_google_protobuf//:protobuf_java",
"@com_google_protobuf//:protobuf_java_util",
"@com_google_protobuf//:protobuf_javalite",
"@zstd-jni//:zstd-jni",
],
package_dir = "derived/jars",
strip_prefix = "external",
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
distrib_jar_filegroup(
name = "bootstrap-derived-java-jars",
srcs = glob(
["derived/jars/**/*.jar"],
allow_empty = True,
),
enable_distributions = ["debian"],
visibility = ["//:__subpackages__"],
)
filegroup(
name = "bootstrap-derived-java-srcs",
srcs = glob(
["derived/**/*.java"],
allow_empty = True,
),
visibility = ["//:__subpackages__"],
)
# Additional generated files that are not Java sources (which could otherwise
# be included in //src:derived_java_sources).
filegroup(
name = "generated_resources",
srcs = [
"//src/main/java/com/google/devtools/build/lib/bazel/rules:builtins_bzl.zip",
"//src/main/java/com/google/devtools/build/lib/bazel/rules:coverage.WORKSPACE",
"//src/main/java/com/google/devtools/build/lib/bazel/rules:rules_license.WORKSPACE",
"//src/main/java/com/google/devtools/build/lib/bazel/rules/cpp:cc_configure.WORKSPACE",
"//src/main/java/com/google/devtools/build/lib/bazel/rules/java:jdk.WORKSPACE",
],
)
pkg_tar(
name = "bazel-srcs",
srcs = [
":generated_resources",
":srcs",
],
# TODO(aiuto): Replace with pkg_filegroup when that is available.
remap_paths = {
"WORKSPACE.filtered": "WORKSPACE",
# Rewrite paths coming from local repositories back into third_party.
"external/googleapis": "third_party/googleapis",
"external/remoteapis": "third_party/remoteapis",
},
strip_prefix = ".",
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
pkg_tar(
name = "platforms-srcs",
srcs = ["@platforms//:srcs"],
strip_prefix = "external",
visibility = ["//:__subpackages__"],
)
pkg_tar(
name = "rules_java-srcs",
srcs = ["@rules_java//:distribution"],
strip_prefix = "external",
visibility = ["//:__subpackages__"],
)
# The @maven repository is created by maven_install from rules_jvm_external.
# `@maven//:srcs` contains all jar files downloaded and BUILD files created by maven_install.
pkg_tar(
name = "maven-srcs",
srcs = ["@maven//:srcs"],
strip_prefix = "external",
visibility = ["//:__subpackages__"],
)
exports_files(
["maven_install.json"],
visibility = ["//tools/compliance:__pkg__"],
)
py_binary(
name = "combine_distfiles",
srcs = ["combine_distfiles.py"],
visibility = ["//visibility:private"],
deps = ["//src:create_embedded_tools_lib"],
)
genrule(
name = "bazel-distfile",
srcs = [
":bazel-srcs",
":bootstrap-jars",
":platforms-srcs",
":rules_java-srcs",
":maven-srcs",
"//src:derived_java_srcs",
"//src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec:bootstrap_autocodec.tar",
"@additional_distfiles//:archives.tar",
],
outs = ["bazel-distfile.zip"],
cmd = "$(location :combine_distfiles) $@ $(SRCS)",
tools = [":combine_distfiles"],
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
genrule(
name = "bazel-distfile-tar",
srcs = [
":bazel-srcs",
":bootstrap-jars",
":platforms-srcs",
":rules_java-srcs",
":maven-srcs",
"//src:derived_java_srcs",
"//src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec:bootstrap_autocodec.tar",
"@additional_distfiles//:archives.tar",
],
outs = ["bazel-distfile.tar"],
cmd = "$(location :combine_distfiles_to_tar.sh) $@ $(SRCS)",
tools = ["combine_distfiles_to_tar.sh"],
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
constraint_setting(name = "machine_size")
# A machine with "high cpu count".
constraint_value(
name = "highcpu_machine",
constraint_setting = ":machine_size",
visibility = ["//visibility:public"],
)
platform(
name = "default_host_platform",
constraint_values = [
":highcpu_machine",
],
parents = ["@local_config_platform//:host"],
)
platform(
name = "windows_arm64",
constraint_values = [
"@platforms//os:windows",
"@platforms//cpu:arm64",
],
)
REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
[
platform(
name = platform_name + "_platform",
exec_properties = {
"dockerNetwork": "standard",
"dockerPrivileged": "true",
"Pool": "default",
},
parents = ["@" + platform_name + "//config:platform"],
)
for platform_name in REMOTE_PLATFORMS
]
[
# The highcpu RBE platform where heavy actions run on. In order to
# use this platform add the highcpu_machine constraint to your target.
platform(
name = platform_name + "_highcpu_platform",
constraint_values = [
"//:highcpu_machine",
],
exec_properties = {
"Pool": "highcpu",
},
parents = ["//:" + platform_name + "_platform"],
)
for platform_name in REMOTE_PLATFORMS
]