blob: 0699a72bc96d91857b1249c95140d61b27d4ef74 [file] [log] [blame]
Corentin Wallez1a0596d2018-09-10 15:16:10 +02001use_relative_paths = True
Corentin Wallez1a0596d2018-09-10 15:16:10 +02002
Corentin Wallez4e2d7cf2020-07-14 15:53:34 +00003gclient_gn_args_file = 'build/config/gclient_args.gni'
Corentin Wallez4e2d7cf2020-07-14 15:53:34 +00004
Corentin Wallezd5203662022-01-05 15:54:08 +00005gclient_gn_args = [
6 'generate_location_tags',
7]
8
Corentin Wallez21a23852018-07-31 18:50:03 +02009vars = {
10 'chromium_git': 'https://chromium.googlesource.com',
Corentin Wallez4c351012018-08-27 10:10:28 +020011 'dawn_git': 'https://dawn.googlesource.com',
Corentin Wallez21a23852018-07-31 18:50:03 +020012 'github_git': 'https://github.com',
Corentin Wallez74cebd62019-11-26 18:21:51 +000013 'swiftshader_git': 'https://swiftshader.googlesource.com',
Corentin Wallez21a23852018-07-31 18:50:03 +020014
Corentin Wallez21a23852018-07-31 18:50:03 +020015 'dawn_standalone': True,
Ben Claytondc890d62021-09-27 22:55:39 +000016 'dawn_node': False, # Also fetches dependencies required for building NodeJS bindings.
Austin Eng4948c812021-10-15 14:28:32 +000017 'dawn_cmake_version': 'version:3.13.5',
18 'dawn_cmake_win32_sha1': 'b106d66bcdc8a71ea2cdf5446091327bfdb1bcd7',
Corentin Wallez49b3b112022-03-23 18:45:14 +000019 'dawn_gn_version': 'git_revision:bd99dbf98cbdefe18a4128189665c5761263bcfb',
Austin Eng4948c812021-10-15 14:28:32 +000020 'dawn_go_version': 'version:1.16',
Corentin Wallezd5203662022-01-05 15:54:08 +000021
Ben Clayton6f8ff742022-03-28 19:55:42 +000022 'node_darwin_arm64_sha': '31859fc1fa0994a95f44f09c367d6ff63607cfde',
23 'node_darwin_x64_sha': '16dfd094763b71988933a31735f9dea966f9abd6',
24 'node_linux_x64_sha': 'ab9544e24e752d3d17f335fb7b2055062e582d11',
25 'node_win_x64_sha': '5ef847033c517c499f56f9d136d159b663bab717',
26
Corentin Wallezd5203662022-01-05 15:54:08 +000027 # GN variable required by //testing that will be output in the gclient_args.gni
28 'generate_location_tags': False,
Corentin Wallez21a23852018-07-31 18:50:03 +020029}
30
31deps = {
32 # Dependencies required to use GN/Clang in standalone
Corentin Wallez1a0596d2018-09-10 15:16:10 +020033 'build': {
Corentin Wallez08985d42022-03-24 14:19:19 +000034 'url': '{chromium_git}/chromium/src/build@c7876b5a44308b94074287939244bc562007de69',
Corentin Wallez21a23852018-07-31 18:50:03 +020035 'condition': 'dawn_standalone',
36 },
Corentin Wallez1a0596d2018-09-10 15:16:10 +020037 'buildtools': {
Corentin Wallez08985d42022-03-24 14:19:19 +000038 'url': '{chromium_git}/chromium/src/buildtools@e1471b21ee9c6765ee95e9db0c76fe997ccad35c',
Corentin Wallez21a23852018-07-31 18:50:03 +020039 'condition': 'dawn_standalone',
40 },
Corentin Wallez60ca94b2021-03-24 16:22:32 +000041 'buildtools/clang_format/script': {
42 'url': '{chromium_git}/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@99803d74e35962f63a775f29477882afd4d57d94',
43 'condition': 'dawn_standalone',
44 },
Corentin Wallez60ca94b2021-03-24 16:22:32 +000045 'buildtools/linux64': {
46 'packages': [{
47 'package': 'gn/gn/linux-amd64',
Corentin Wallez88d5e072021-12-13 15:24:55 +000048 'version': Var('dawn_gn_version'),
Corentin Wallez60ca94b2021-03-24 16:22:32 +000049 }],
50 'dep_type': 'cipd',
51 'condition': 'dawn_standalone and host_os == "linux"',
52 },
53 'buildtools/mac': {
54 'packages': [{
55 'package': 'gn/gn/mac-${{arch}}',
Corentin Wallez88d5e072021-12-13 15:24:55 +000056 'version': Var('dawn_gn_version'),
Corentin Wallez60ca94b2021-03-24 16:22:32 +000057 }],
58 'dep_type': 'cipd',
59 'condition': 'dawn_standalone and host_os == "mac"',
60 },
61 'buildtools/win': {
62 'packages': [{
63 'package': 'gn/gn/windows-amd64',
Corentin Wallez88d5e072021-12-13 15:24:55 +000064 'version': Var('dawn_gn_version'),
Corentin Wallez60ca94b2021-03-24 16:22:32 +000065 }],
66 'dep_type': 'cipd',
67 'condition': 'dawn_standalone and host_os == "win"',
68 },
69
70 'buildtools/third_party/libc++/trunk': {
Corentin Wallezd5203662022-01-05 15:54:08 +000071 'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxx.git@79a2e924d96e2fc1e4b937c42efd08898fa472d7',
Corentin Wallez60ca94b2021-03-24 16:22:32 +000072 'condition': 'dawn_standalone',
73 },
74
75 'buildtools/third_party/libc++abi/trunk': {
Corentin Wallez08985d42022-03-24 14:19:19 +000076 'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxxabi.git@edde7bbc4049ae4a32257d9f16451312c763c601',
Corentin Wallez60ca94b2021-03-24 16:22:32 +000077 'condition': 'dawn_standalone',
78 },
79
Corentin Wallez1a0596d2018-09-10 15:16:10 +020080 'tools/clang': {
Corentin Wallez08985d42022-03-24 14:19:19 +000081 'url': '{chromium_git}/chromium/src/tools/clang@df9b14e26c163dd8e2c0ab081e2689f038ae7141',
Corentin Wallez21a23852018-07-31 18:50:03 +020082 'condition': 'dawn_standalone',
83 },
Kai Ninomiyaf526d772020-04-06 22:27:02 +000084 'tools/clang/dsymutil': {
Corentin Wallez60ca94b2021-03-24 16:22:32 +000085 'packages': [{
86 'package': 'chromium/llvm-build-tools/dsymutil',
87 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC',
88 }],
Corentin Wallez2015b2f2021-03-04 17:37:55 +000089 'condition': 'dawn_standalone and (checkout_mac or checkout_ios)',
Kai Ninomiyaf526d772020-04-06 22:27:02 +000090 'dep_type': 'cipd',
91 },
Corentin Wallez21a23852018-07-31 18:50:03 +020092
Corentin Wallez649e2fe2018-08-03 15:57:43 +020093 # Testing, GTest and GMock
Corentin Wallez1a0596d2018-09-10 15:16:10 +020094 'testing': {
Corentin Wallezd5203662022-01-05 15:54:08 +000095 'url': '{chromium_git}/chromium/src/testing@d485ae97b7900c1fb7edfbe2901ae5adcb120865',
Corentin Wallez21a23852018-07-31 18:50:03 +020096 'condition': 'dawn_standalone',
97 },
Corentin Wallez1a0596d2018-09-10 15:16:10 +020098 'third_party/googletest': {
Corentin Wallezd5203662022-01-05 15:54:08 +000099 'url': '{chromium_git}/external/github.com/google/googletest@6b74da4757a549563d7c37c8fae3e704662a043b',
100 'condition': 'dawn_standalone',
101 },
102 # This is a dependency of //testing
103 'third_party/catapult': {
104 'url': '{chromium_git}/catapult.git@fa35beefb3429605035f98211ddb8750dee6a13d',
Corentin Wallez649e2fe2018-08-03 15:57:43 +0200105 'condition': 'dawn_standalone',
106 },
Corentin Wallez21a23852018-07-31 18:50:03 +0200107
Corentin Wallez3bb0bb92018-08-13 17:47:44 +0200108 # Jinja2 and MarkupSafe for the code generator
Corentin Wallez1a0596d2018-09-10 15:16:10 +0200109 'third_party/jinja2': {
James Pricee97594d2021-11-02 08:31:02 +0000110 'url': '{chromium_git}/chromium/src/third_party/jinja2@ee69aa00ee8536f61db6a451f3858745cf587de6',
Corentin Wallez3bb0bb92018-08-13 17:47:44 +0200111 'condition': 'dawn_standalone',
112 },
Corentin Wallez1a0596d2018-09-10 15:16:10 +0200113 'third_party/markupsafe': {
Corentin Wallezbf1e9532020-11-04 09:44:47 +0000114 'url': '{chromium_git}/chromium/src/third_party/markupsafe@0944e71f4b2cb9a871bcbe353f95e889b64a611a',
Corentin Wallez3bb0bb92018-08-13 17:47:44 +0200115 'condition': 'dawn_standalone',
116 },
117
Corentin Wallez4d7d1692018-08-13 08:23:27 +0200118 # GLFW for tests and samples
Corentin Wallez1a0596d2018-09-10 15:16:10 +0200119 'third_party/glfw': {
Corentin Wallezfacbc822022-01-25 14:22:05 +0000120 'url': '{chromium_git}/external/github.com/glfw/glfw@94773111300fee0453844a4c9407af7e880b4df8',
Corentin Wallez4d7d1692018-08-13 08:23:27 +0200121 'condition': 'dawn_standalone',
122 },
123
Stephen White77fcdf72021-01-11 15:52:12 +0000124 'third_party/vulkan_memory_allocator': {
Austin Eng972c2382021-12-21 21:21:42 +0000125 'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@5e49f57a6e71a026a54eb42e366de09a4142d24e',
Stephen White77fcdf72021-01-11 15:52:12 +0000126 'condition': 'dawn_standalone',
127 },
128
129 'third_party/angle': {
Dawn Autoroller04c18262022-04-06 19:21:23 +0000130 'url': '{chromium_git}/angle/angle@152616eedcfded69cab516e093efd3a98190fa5b',
Stephen White77fcdf72021-01-11 15:52:12 +0000131 'condition': 'dawn_standalone',
132 },
133
Corentin Wallez74cebd62019-11-26 18:21:51 +0000134 'third_party/swiftshader': {
Dawn Autoroller380a2622022-04-06 17:19:43 +0000135 'url': '{swiftshader_git}/SwiftShader@9c16e141823e93c2d6ad05b94165cc18ffda6ffe',
Corentin Wallez74cebd62019-11-26 18:21:51 +0000136 'condition': 'dawn_standalone',
137 },
138
Stephen Whitef1fa60b2021-01-06 17:41:50 +0000139 'third_party/vulkan-deps': {
dawn-autoroll720d6d22022-04-06 18:29:24 +0000140 'url': '{chromium_git}/vulkan-deps@746dd371204b5b582e0ed0365909fefa4b0ef0fa',
Corentin Wallez1fdd0592021-04-02 18:04:27 +0000141 'condition': 'dawn_standalone',
Stephen White77fcdf72021-01-11 15:52:12 +0000142 },
143
144 'third_party/zlib': {
145 'url': '{chromium_git}/chromium/src/third_party/zlib@c29ee8c9c3824ca013479bf8115035527967fe02',
Stephen Whitef1fa60b2021-01-06 17:41:50 +0000146 'condition': 'dawn_standalone',
147 },
Brandon Jonesa04663c2021-09-23 20:36:03 +0000148
149 'third_party/abseil-cpp': {
150 'url': '{chromium_git}/chromium/src/third_party/abseil-cpp@789af048b388657987c59d4da406859034fe310f',
151 'condition': 'dawn_standalone',
152 },
Ben Claytondc890d62021-09-27 22:55:39 +0000153
Kai Ninomiya5c780d72022-03-17 21:43:17 +0000154 # WebGPU CTS - not used directly by Dawn, only transitively by Chromium.
155 'third_party/webgpu-cts': {
Austin Engb542f9d2022-03-19 00:50:18 +0000156 'url': '{chromium_git}/external/github.com/gpuweb/cts@87e74a93e0c046b30a798667f19a449fc99ddb5d',
Kai Ninomiya5c780d72022-03-17 21:43:17 +0000157 'condition': 'build_with_chromium',
158 },
159
Ben Clayton6f8ff742022-03-28 19:55:42 +0000160 # Dependencies required to build / run Dawn NodeJS bindings
Ben Claytondc890d62021-09-27 22:55:39 +0000161 'third_party/node-api-headers': {
162 'url': '{github_git}/nodejs/node-api-headers.git@d68505e4055ecb630e14c26c32e5c2c65e179bba',
163 'condition': 'dawn_node',
164 },
165 'third_party/node-addon-api': {
166 'url': '{github_git}/nodejs/node-addon-api.git@4a3de56c3e4ed0031635a2f642b27efeeed00add',
167 'condition': 'dawn_node',
168 },
169 'third_party/gpuweb': {
Ben Claytondb8666f2022-03-03 21:13:51 +0000170 'url': '{github_git}/gpuweb/gpuweb.git@881403b5fda2d9ac9ffc5daa24e34738205bf155',
Ben Claytondc890d62021-09-27 22:55:39 +0000171 'condition': 'dawn_node',
172 },
Ryan Harrisone87ac762022-04-06 15:37:27 -0400173 'third_party/gpuweb-cts': {
174 'url': '{chromium_git}/external/github.com/gpuweb/cts@b0291fd966b55a5efc496772555b94842bde1085',
175 'condition': 'dawn_standalone',
176 },
Austin Eng4948c812021-10-15 14:28:32 +0000177
178 'tools/golang': {
179 'condition': 'dawn_node',
180 'packages': [{
181 'package': 'infra/3pp/tools/go/${{platform}}',
182 'version': Var('dawn_go_version'),
183 }],
184 'dep_type': 'cipd',
185 },
186
187 'tools/cmake': {
188 'condition': 'dawn_node and (host_os == "mac" or host_os == "linux")',
189 'packages': [{
190 'package': 'infra/3pp/tools/cmake/${{platform}}',
191 'version': Var('dawn_cmake_version'),
192 }],
193 'dep_type': 'cipd',
194 },
Ryan Harrisone87ac762022-04-06 15:37:27 -0400195
196 # Misc dependencies inherited from Tint
Ryan Harrison3374f432022-03-28 18:01:02 +0000197 'third_party/benchmark': {
198 'url': '{chromium_git}/external/github.com/google/benchmark.git@e991355c02b93fe17713efe04cbc2e278e00fdbd',
Ryan Harrisone87ac762022-04-06 15:37:27 -0400199 'condition': 'dawn_standalone',
Ryan Harrison3374f432022-03-28 18:01:02 +0000200 },
Ryan Harrison3374f432022-03-28 18:01:02 +0000201 'third_party/protobuf': {
202 'url': '{chromium_git}/external/github.com/protocolbuffers/protobuf.git@fde7cf7358ec7cd69e8db9be4f1fa6a5c431386a',
Ryan Harrisone87ac762022-04-06 15:37:27 -0400203 'condition': 'dawn_standalone',
Ryan Harrison3374f432022-03-28 18:01:02 +0000204 },
Corentin Wallez21a23852018-07-31 18:50:03 +0200205}
206
207hooks = [
Corentin Wallez21a23852018-07-31 18:50:03 +0200208 # Pull the compilers and system libraries for hermetic builds
209 {
210 'name': 'sysroot_x86',
211 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000212 'condition': 'dawn_standalone and checkout_linux and (checkout_x86 or checkout_x64)',
Corentin Wallezd5203662022-01-05 15:54:08 +0000213 'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
Corentin Wallez21a23852018-07-31 18:50:03 +0200214 '--arch=x86'],
215 },
216 {
217 'name': 'sysroot_x64',
218 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000219 'condition': 'dawn_standalone and checkout_linux and checkout_x64',
Corentin Wallezd5203662022-01-05 15:54:08 +0000220 'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
Corentin Wallez21a23852018-07-31 18:50:03 +0200221 '--arch=x64'],
222 },
223 {
Corentin Wallezd4e7f082020-11-17 21:16:31 +0000224 # Update the Mac toolchain if possible, this makes builders use "hermetic XCode" which is
225 # is more consistent (only changes when rolling build/) and is cached.
226 'name': 'mac_toolchain',
227 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000228 'condition': 'dawn_standalone and checkout_mac',
Corentin Wallezd5203662022-01-05 15:54:08 +0000229 'action': ['python3', 'build/mac_toolchain.py'],
Corentin Wallezd4e7f082020-11-17 21:16:31 +0000230 },
231 {
Corentin Wallez682c44a2018-08-13 17:48:16 +0200232 # Update the Windows toolchain if necessary. Must run before 'clang' below.
Corentin Wallez21a23852018-07-31 18:50:03 +0200233 'name': 'win_toolchain',
234 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000235 'condition': 'dawn_standalone and checkout_win',
Corentin Wallezd5203662022-01-05 15:54:08 +0000236 'action': ['python3', 'build/vs_toolchain.py', 'update', '--force'],
Corentin Wallez21a23852018-07-31 18:50:03 +0200237 },
238 {
239 # Note: On Win, this should run after win_toolchain, as it may use it.
240 'name': 'clang',
241 'pattern': '.',
Corentin Wallezd5203662022-01-05 15:54:08 +0000242 'action': ['python3', 'tools/clang/scripts/update.py'],
Corentin Wallez21a23852018-07-31 18:50:03 +0200243 'condition': 'dawn_standalone',
244 },
245 {
246 # Pull rc binaries using checked-in hashes.
247 'name': 'rc_win',
248 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000249 'condition': 'dawn_standalone and checkout_win and host_os == "win"',
Corentin Wallez21a23852018-07-31 18:50:03 +0200250 'action': [ 'download_from_google_storage',
251 '--no_resume',
252 '--no_auth',
253 '--bucket', 'chromium-browser-clang/rc',
Corentin Wallez1a0596d2018-09-10 15:16:10 +0200254 '-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
Corentin Wallez21a23852018-07-31 18:50:03 +0200255 ],
256 },
Corentin Wallez131e6192020-11-03 18:18:06 +0000257 # Pull clang-format binaries using checked-in hashes.
258 {
Corentin Wallez51723bd2022-04-07 10:40:46 +0000259 'name': 'clang_format_win',
260 'pattern': '.',
261 'condition': 'dawn_standalone and host_os == "win"',
262 'action': [ 'download_from_google_storage',
263 '--no_resume',
264 '--no_auth',
265 '--bucket', 'chromium-clang-format',
266 '-s', 'buildtools/win/clang-format.exe.sha1',
267 ],
268 },
269 {
Ben Clayton088a6002022-04-06 19:57:42 +0000270 'name': 'clang_format_mac_x64',
Corentin Wallez131e6192020-11-03 18:18:06 +0000271 'pattern': '.',
Ben Clayton088a6002022-04-06 19:57:42 +0000272 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "x64"',
Corentin Wallez131e6192020-11-03 18:18:06 +0000273 'action': [ 'download_from_google_storage',
274 '--no_resume',
275 '--no_auth',
276 '--bucket', 'chromium-clang-format',
Ben Clayton088a6002022-04-06 19:57:42 +0000277 '-s', 'buildtools/mac/clang-format.x64.sha1',
278 '-o', 'buildtools/mac/clang-format',
Corentin Wallez131e6192020-11-03 18:18:06 +0000279 ],
280 },
281 {
Ben Clayton088a6002022-04-06 19:57:42 +0000282 'name': 'clang_format_mac_arm64',
Corentin Wallez131e6192020-11-03 18:18:06 +0000283 'pattern': '.',
Ben Clayton088a6002022-04-06 19:57:42 +0000284 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "arm64"',
Corentin Wallez131e6192020-11-03 18:18:06 +0000285 'action': [ 'download_from_google_storage',
286 '--no_resume',
287 '--no_auth',
288 '--bucket', 'chromium-clang-format',
Ben Clayton088a6002022-04-06 19:57:42 +0000289 '-s', 'buildtools/mac/clang-format.arm64.sha1',
290 '-o', 'buildtools/mac/clang-format',
Corentin Wallez131e6192020-11-03 18:18:06 +0000291 ],
292 },
293 {
294 'name': 'clang_format_linux',
295 'pattern': '.',
Corentin Wallez2015b2f2021-03-04 17:37:55 +0000296 'condition': 'dawn_standalone and host_os == "linux"',
Corentin Wallez131e6192020-11-03 18:18:06 +0000297 'action': [ 'download_from_google_storage',
298 '--no_resume',
299 '--no_auth',
300 '--bucket', 'chromium-clang-format',
301 '-s', 'buildtools/linux64/clang-format.sha1',
302 ],
303 },
Corentin Wallez15d8cb72018-11-19 10:13:31 +0000304 # Update build/util/LASTCHANGE.
305 {
306 'name': 'lastchange',
307 'pattern': '.',
Jiajie Hu2ffc55a2020-07-01 05:08:36 +0000308 'condition': 'dawn_standalone',
Corentin Wallezd5203662022-01-05 15:54:08 +0000309 'action': ['python3', 'build/util/lastchange.py',
Corentin Wallez15d8cb72018-11-19 10:13:31 +0000310 '-o', 'build/util/LASTCHANGE'],
311 },
Austin Eng4948c812021-10-15 14:28:32 +0000312 # TODO(https://crbug.com/1180257): Use CIPD for CMake on Windows.
313 {
314 'name': 'cmake_win32',
315 'pattern': '.',
316 'condition': 'dawn_node and host_os == "win"',
317 'action': [ 'download_from_google_storage',
318 '--no_resume',
319 '--platform=win32',
320 '--no_auth',
321 '--bucket', 'chromium-tools',
322 Var('dawn_cmake_win32_sha1'),
323 '-o', 'tools/cmake-win32.zip'
324 ],
325 },
326 {
327 'name': 'cmake_win32_extract',
328 'pattern': '.',
329 'condition': 'dawn_node and host_os == "win"',
Corentin Wallezd5203662022-01-05 15:54:08 +0000330 'action': [ 'python3',
Austin Eng4948c812021-10-15 14:28:32 +0000331 'scripts/extract.py',
332 'tools/cmake-win32.zip',
333 'tools/cmake-win32/',
334 ],
335 },
Ben Clayton6f8ff742022-03-28 19:55:42 +0000336
337 # Node binaries, when dawn_node is enabled
338 {
339 'name': 'node_linux64',
340 'pattern': '.',
341 'condition': 'dawn_node and host_os == "linux"',
342 'action': [ 'download_from_google_storage',
343 '--no_resume',
344 '--extract',
345 '--no_auth',
346 '--bucket', 'chromium-nodejs/16.13.0',
347 Var('node_linux_x64_sha'),
348 '-o', 'third_party/node/node-linux-x64.tar.gz',
349 ],
350 },
351 {
352 'name': 'node_mac',
353 'pattern': '.',
354 'condition': 'dawn_node and host_os == "mac"',
355 'action': [ 'download_from_google_storage',
356 '--no_resume',
357 '--extract',
358 '--no_auth',
359 '--bucket', 'chromium-nodejs/16.13.0',
360 Var('node_darwin_x64_sha'),
361 '-o', 'third_party/node/node-darwin-x64.tar.gz',
362 ],
363 },
364 {
365 'name': 'node_mac_arm64',
366 'pattern': '.',
367 'condition': 'dawn_node and host_os == "mac"',
368 'action': [ 'download_from_google_storage',
369 '--no_resume',
370 '--extract',
371 '--no_auth',
372 '--bucket', 'chromium-nodejs/16.13.0',
373 Var('node_darwin_arm64_sha'),
374 '-o', 'third_party/node/node-darwin-arm64.tar.gz',
375 ],
376 },
377 {
378 'name': 'node_win',
379 'pattern': '.',
380 'condition': 'dawn_node and host_os == "win"',
381 'action': [ 'download_from_google_storage',
382 '--no_resume',
383 '--no_auth',
384 '--bucket', 'chromium-nodejs/16.13.0',
385 Var('node_win_x64_sha'),
386 '-o', 'third_party/node/node.exe',
387 ],
388 },
389
Corentin Wallezca81bd32018-09-03 11:55:58 +0200390]
391
392recursedeps = [
Stephen Whitef1fa60b2021-01-06 17:41:50 +0000393 'third_party/vulkan-deps',
Corentin Wallez21a23852018-07-31 18:50:03 +0200394]