Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 1 | use_relative_paths = True |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 2 | |
Corentin Wallez | 4e2d7cf | 2020-07-14 15:53:34 +0000 | [diff] [blame] | 3 | gclient_gn_args_file = 'build/config/gclient_args.gni' |
Corentin Wallez | 4e2d7cf | 2020-07-14 15:53:34 +0000 | [diff] [blame] | 4 | |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 5 | gclient_gn_args = [ |
| 6 | 'generate_location_tags', |
| 7 | ] |
| 8 | |
Joanna Wang | 77ce559 | 2023-08-04 22:26:55 +0000 | [diff] [blame] | 9 | git_dependencies = 'SYNC' |
| 10 | |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 11 | vars = { |
| 12 | 'chromium_git': 'https://chromium.googlesource.com', |
Corentin Wallez | 4c35101 | 2018-08-27 10:10:28 +0200 | [diff] [blame] | 13 | 'dawn_git': 'https://dawn.googlesource.com', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 14 | 'github_git': 'https://github.com', |
Corentin Wallez | 74cebd6 | 2019-11-26 18:21:51 +0000 | [diff] [blame] | 15 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 16 | |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 17 | 'dawn_standalone': True, |
Ben Clayton | dc890d6 | 2021-09-27 22:55:39 +0000 | [diff] [blame] | 18 | 'dawn_node': False, # Also fetches dependencies required for building NodeJS bindings. |
Corentin Wallez | fa1a547 | 2022-08-02 16:07:45 +0000 | [diff] [blame] | 19 | 'dawn_cmake_version': 'version:2@3.23.3', |
Austin Eng | 4948c81 | 2021-10-15 14:28:32 +0000 | [diff] [blame] | 20 | 'dawn_cmake_win32_sha1': 'b106d66bcdc8a71ea2cdf5446091327bfdb1bcd7', |
danakj | 352b630 | 2023-10-19 22:27:14 +0000 | [diff] [blame] | 21 | 'dawn_gn_version': 'git_revision:182a6eb05d15cc76d2302f7928fdb4f645d52c53', |
Junji Watanabe | 4ad7f01 | 2022-10-03 02:48:52 +0000 | [diff] [blame] | 22 | # ninja CIPD package version. |
| 23 | # https://chrome-infra-packages.appspot.com/p/infra/3pp/tools/ninja |
Corentin Wallez | 89b7809 | 2023-01-27 15:36:18 +0000 | [diff] [blame] | 24 | 'dawn_ninja_version': 'version:2@1.11.1.chromium.6', |
Ben Clayton | 08c4ea3 | 2023-10-30 18:46:42 +0000 | [diff] [blame] | 25 | 'dawn_go_version': 'version:2@1.21.3', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 26 | |
Ben Clayton | 442f3d0 | 2023-11-13 17:56:32 +0000 | [diff] [blame] | 27 | 'node_darwin_arm64_sha': '523ee26632045e664cd0ddd5aef31a378a563025', |
| 28 | 'node_darwin_x64_sha': 'b930bbfa9f232fe12d5fcf39b38614ae4be99e1a', |
| 29 | 'node_linux_x64_sha': '179cfb7d2a0d90bbd72271481fd0bda2b297eaa9', |
| 30 | 'node_win_x64_sha': '9bfd52de11d5bf9645bdabc469bded1da0bf12e7', |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 31 | |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 32 | # GN variable required by //testing that will be output in the gclient_args.gni |
| 33 | 'generate_location_tags': False, |
dan sinclair | 93cf346 | 2022-05-16 12:58:24 +0000 | [diff] [blame] | 34 | |
| 35 | # Fetch clang-tidy into the same bin/ directory as our clang binary. |
| 36 | 'checkout_clang_tidy': False, |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 37 | |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 38 | # Fetch the rust toolchain. |
| 39 | # |
| 40 | # Use a custom_vars section to enable it: |
| 41 | # "custom_vars": { |
| 42 | # "checkout_rust": True, |
| 43 | # } |
| 44 | 'checkout_rust': False, |
| 45 | |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 46 | # Fetch configuration files required for the 'use_remoteexec' gn arg |
| 47 | 'download_remoteexec_cfg': False, |
| 48 | # RBE instance to use for running remote builds |
Corentin Wallez | 5905d92 | 2023-07-27 21:33:21 +0000 | [diff] [blame] | 49 | 'rbe_instance': 'projects/rbe-chrome-untrusted/instances/default_instance', |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 50 | # RBE project to download rewrapper config files for. Only needed if |
| 51 | # different from the project used in 'rbe_instance' |
Corentin Wallez | 5905d92 | 2023-07-27 21:33:21 +0000 | [diff] [blame] | 52 | 'rewrapper_cfg_project': '', |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 53 | # reclient CIPD package |
| 54 | 'reclient_package': 'infra/rbe/client/', |
| 55 | # reclient CIPD package version |
Yuly Novikov | 27324dd | 2023-09-22 15:10:33 +0000 | [diff] [blame] | 56 | 'reclient_version': 're_client_version:0.114.2.81e819b-gomaip', |
Joanna Wang | 77ce559 | 2023-08-04 22:26:55 +0000 | [diff] [blame] | 57 | |
| 58 | # 'magic' text to tell depot_tools that git submodules should be accepted |
| 59 | # but parity with DEPS file is expected. |
| 60 | 'SUBMODULE_MIGRATION': 'True' |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | deps = { |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 64 | 'buildtools': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 65 | 'url': '{chromium_git}/chromium/src/buildtools@48ab3bd053bfe2fef4635d7cb1861f8923167b96', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 66 | 'condition': 'dawn_standalone', |
| 67 | }, |
Loko Kung | 2d988ce | 2023-05-25 23:28:34 +0000 | [diff] [blame] | 68 | 'third_party/clang-format/script': { |
Austin Eng | 99ad82a | 2022-07-27 21:57:30 +0000 | [diff] [blame] | 69 | 'url': '{chromium_git}/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@8b525d2747f2584fc35d8c7e612e66f377858df7', |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 70 | 'condition': 'dawn_standalone', |
| 71 | }, |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 72 | 'buildtools/linux64': { |
| 73 | 'packages': [{ |
| 74 | 'package': 'gn/gn/linux-amd64', |
Corentin Wallez | 88d5e07 | 2021-12-13 15:24:55 +0000 | [diff] [blame] | 75 | 'version': Var('dawn_gn_version'), |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 76 | }], |
| 77 | 'dep_type': 'cipd', |
| 78 | 'condition': 'dawn_standalone and host_os == "linux"', |
| 79 | }, |
| 80 | 'buildtools/mac': { |
| 81 | 'packages': [{ |
| 82 | 'package': 'gn/gn/mac-${{arch}}', |
Corentin Wallez | 88d5e07 | 2021-12-13 15:24:55 +0000 | [diff] [blame] | 83 | 'version': Var('dawn_gn_version'), |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 84 | }], |
| 85 | 'dep_type': 'cipd', |
| 86 | 'condition': 'dawn_standalone and host_os == "mac"', |
| 87 | }, |
| 88 | 'buildtools/win': { |
| 89 | 'packages': [{ |
| 90 | 'package': 'gn/gn/windows-amd64', |
Corentin Wallez | 88d5e07 | 2021-12-13 15:24:55 +0000 | [diff] [blame] | 91 | 'version': Var('dawn_gn_version'), |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 92 | }], |
| 93 | 'dep_type': 'cipd', |
| 94 | 'condition': 'dawn_standalone and host_os == "win"', |
| 95 | }, |
| 96 | |
Joanna Wang | ff5d8b5 | 2023-08-02 16:35:08 +0000 | [diff] [blame] | 97 | 'third_party/libc++/src': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 98 | 'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxx.git@278060665f956b98b54922e3cb5e38b07884ce7d', |
Joanna Wang | e7e54c0 | 2023-07-25 17:59:41 +0000 | [diff] [blame] | 99 | 'condition': 'dawn_standalone', |
| 100 | }, |
| 101 | |
Joanna Wang | ff5d8b5 | 2023-08-02 16:35:08 +0000 | [diff] [blame] | 102 | 'third_party/libc++abi/src': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 103 | 'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxxabi.git@0226cb1cdfe740b173394e1cebbd0dcf293e38ad', |
Joanna Wang | e7e54c0 | 2023-07-25 17:59:41 +0000 | [diff] [blame] | 104 | 'condition': 'dawn_standalone', |
| 105 | }, |
| 106 | |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 107 | # Dependencies required to use GN, Clang, and Rust in standalone. |
| 108 | # The //build, //tools/clang, and //tools/rust deps should all be updated |
| 109 | # in unison, as there are dependencies between them. |
| 110 | 'build': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 111 | 'url': '{chromium_git}/chromium/src/build@df6338f68f66357d27ea7f0354d50216c8c74473', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 112 | 'condition': 'dawn_standalone', |
| 113 | }, |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 114 | 'tools/clang': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 115 | 'url': '{chromium_git}/chromium/src/tools/clang@419fc5706504be3cc8d17cc61bdc6b45226927e9', |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 116 | 'condition': 'dawn_standalone', |
| 117 | }, |
| 118 | 'tools/rust': { |
Arthur Sonzogni | b0e4054 | 2023-11-08 17:34:19 +0000 | [diff] [blame] | 119 | 'url': '{chromium_git}/chromium/src/tools/rust@c2a0e44aaa68e02826feea4a4e152bdd8b897266', |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 120 | 'condition': 'dawn_standalone and checkout_rust', |
| 121 | }, |
Kai Ninomiya | f526d77 | 2020-04-06 22:27:02 +0000 | [diff] [blame] | 122 | 'tools/clang/dsymutil': { |
Corentin Wallez | 60ca94b | 2021-03-24 16:22:32 +0000 | [diff] [blame] | 123 | 'packages': [{ |
| 124 | 'package': 'chromium/llvm-build-tools/dsymutil', |
| 125 | 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
| 126 | }], |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 127 | 'condition': 'dawn_standalone and (checkout_mac or checkout_ios)', |
Kai Ninomiya | f526d77 | 2020-04-06 22:27:02 +0000 | [diff] [blame] | 128 | 'dep_type': 'cipd', |
| 129 | }, |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 130 | |
Corentin Wallez | 649e2fe | 2018-08-03 15:57:43 +0200 | [diff] [blame] | 131 | # Testing, GTest and GMock |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 132 | 'testing': { |
Ben Clayton | 3610fc9 | 2023-09-29 12:13:00 +0000 | [diff] [blame] | 133 | 'url': '{chromium_git}/chromium/src/testing@035a9b18047370df7403758b006e6c9696d6b84d', |
Ben Clayton | b7bd8d8 | 2023-09-28 14:10:51 +0000 | [diff] [blame] | 134 | 'condition': 'dawn_standalone', |
| 135 | }, |
| 136 | 'third_party/libFuzzer/src': { |
| 137 | 'url': '{chromium_git}/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + '26cc39e59b2bf5cbc20486296248a842c536878d', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 138 | 'condition': 'dawn_standalone', |
| 139 | }, |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 140 | 'third_party/googletest': { |
Austin Eng | a0e96b5 | 2023-02-18 00:39:01 +0000 | [diff] [blame] | 141 | 'url': '{chromium_git}/external/github.com/google/googletest@7a7231c442484be389fdf01594310349ca0e42a8', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 142 | 'condition': 'dawn_standalone', |
| 143 | }, |
| 144 | # This is a dependency of //testing |
| 145 | 'third_party/catapult': { |
Anne Redulla | 3bcc93f | 2023-08-09 15:12:58 +0000 | [diff] [blame] | 146 | 'url': '{chromium_git}/catapult.git@dd218dfd815774289f8a81015f7a3131f72afbde', |
Corentin Wallez | 649e2fe | 2018-08-03 15:57:43 +0200 | [diff] [blame] | 147 | 'condition': 'dawn_standalone', |
| 148 | }, |
Austin Eng | 6a7bba5 | 2023-04-17 18:11:51 +0000 | [diff] [blame] | 149 | 'third_party/google_benchmark/src': { |
| 150 | 'url': '{chromium_git}/external/github.com/google/benchmark.git' + '@' + 'efc89f0b524780b1994d5dddd83a92718e5be492', |
| 151 | 'condition': 'dawn_standalone', |
| 152 | }, |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 153 | |
Corentin Wallez | 3bb0bb9 | 2018-08-13 17:47:44 +0200 | [diff] [blame] | 154 | # Jinja2 and MarkupSafe for the code generator |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 155 | 'third_party/jinja2': { |
Anne Redulla | 3bcc93f | 2023-08-09 15:12:58 +0000 | [diff] [blame] | 156 | 'url': '{chromium_git}/chromium/src/third_party/jinja2@515dd10de9bf63040045902a4a310d2ba25213a0', |
Corentin Wallez | 3bb0bb9 | 2018-08-13 17:47:44 +0200 | [diff] [blame] | 157 | 'condition': 'dawn_standalone', |
| 158 | }, |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 159 | 'third_party/markupsafe': { |
Anne Redulla | 3bcc93f | 2023-08-09 15:12:58 +0000 | [diff] [blame] | 160 | 'url': '{chromium_git}/chromium/src/third_party/markupsafe@006709ba3ed87660a17bd4548c45663628f5ed85', |
Corentin Wallez | 3bb0bb9 | 2018-08-13 17:47:44 +0200 | [diff] [blame] | 161 | 'condition': 'dawn_standalone', |
| 162 | }, |
| 163 | |
Corentin Wallez | 4d7d169 | 2018-08-13 08:23:27 +0200 | [diff] [blame] | 164 | # GLFW for tests and samples |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 165 | 'third_party/glfw': { |
Corentin Wallez | 6903c46 | 2022-05-25 17:46:04 +0000 | [diff] [blame] | 166 | 'url': '{chromium_git}/external/github.com/glfw/glfw@62e175ef9fae75335575964c845a302447c012c7', |
Corentin Wallez | 4d7d169 | 2018-08-13 08:23:27 +0200 | [diff] [blame] | 167 | }, |
| 168 | |
Stephen White | 77fcdf7 | 2021-01-11 15:52:12 +0000 | [diff] [blame] | 169 | 'third_party/vulkan_memory_allocator': { |
Shahbaz Youssefi | eaa4e7e | 2023-07-14 17:17:20 +0000 | [diff] [blame] | 170 | 'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@e87036508bb156f9986ea959323de1869e328f58', |
Stephen White | 77fcdf7 | 2021-01-11 15:52:12 +0000 | [diff] [blame] | 171 | 'condition': 'dawn_standalone', |
| 172 | }, |
| 173 | |
| 174 | 'third_party/angle': { |
Dawn Autoroller | 85a7c7f | 2023-12-07 13:52:39 +0000 | [diff] [blame] | 175 | 'url': '{chromium_git}/angle/angle@e4f1f1e35d40fea295c7249134e4965c5759342f', |
Stephen White | 77fcdf7 | 2021-01-11 15:52:12 +0000 | [diff] [blame] | 176 | 'condition': 'dawn_standalone', |
| 177 | }, |
| 178 | |
Corentin Wallez | 74cebd6 | 2019-11-26 18:21:51 +0000 | [diff] [blame] | 179 | 'third_party/swiftshader': { |
Dawn Autoroller | d08111b | 2023-12-06 22:25:05 +0000 | [diff] [blame] | 180 | 'url': '{swiftshader_git}/SwiftShader@77be35e337bb80df52c5ea4dd4cf2d2072abad25', |
Corentin Wallez | 74cebd6 | 2019-11-26 18:21:51 +0000 | [diff] [blame] | 181 | 'condition': 'dawn_standalone', |
| 182 | }, |
| 183 | |
Stephen White | f1fa60b | 2021-01-06 17:41:50 +0000 | [diff] [blame] | 184 | 'third_party/vulkan-deps': { |
dawn-autoroll | b211139 | 2023-12-07 14:53:54 +0000 | [diff] [blame] | 185 | 'url': '{chromium_git}/vulkan-deps@fb2389e52832250e05c0a5f08a624e31e6401106', |
Corentin Wallez | 1fdd059 | 2021-04-02 18:04:27 +0000 | [diff] [blame] | 186 | 'condition': 'dawn_standalone', |
Stephen White | 77fcdf7 | 2021-01-11 15:52:12 +0000 | [diff] [blame] | 187 | }, |
| 188 | |
| 189 | 'third_party/zlib': { |
Anne Redulla | 3bcc93f | 2023-08-09 15:12:58 +0000 | [diff] [blame] | 190 | 'url': '{chromium_git}/chromium/src/third_party/zlib@526382e41c9c5275dc329db4328b54e4f344a204', |
Stephen White | f1fa60b | 2021-01-06 17:41:50 +0000 | [diff] [blame] | 191 | 'condition': 'dawn_standalone', |
| 192 | }, |
Brandon Jones | a04663c | 2021-09-23 20:36:03 +0000 | [diff] [blame] | 193 | |
| 194 | 'third_party/abseil-cpp': { |
James Price | 39bbc58 | 2023-08-22 17:59:02 +0000 | [diff] [blame] | 195 | 'url': '{chromium_git}/chromium/src/third_party/abseil-cpp@4ef9b33175828ea46d091e7e5ec28259d39a8ba5', |
Brandon Jones | a04663c | 2021-09-23 20:36:03 +0000 | [diff] [blame] | 196 | 'condition': 'dawn_standalone', |
| 197 | }, |
Ben Clayton | dc890d6 | 2021-09-27 22:55:39 +0000 | [diff] [blame] | 198 | |
Antonio Maiorano | ad5e108 | 2023-06-22 20:45:54 +0000 | [diff] [blame] | 199 | 'third_party/dxc': { |
Dawn Autoroller | 2b86be7 | 2023-12-07 13:12:46 +0000 | [diff] [blame] | 200 | 'url': '{chromium_git}/external/github.com/microsoft/DirectXShaderCompiler@3f8236e6dd1cba22beac8e93a789fb36ef2ef1c5', |
Antonio Maiorano | ad5e108 | 2023-06-22 20:45:54 +0000 | [diff] [blame] | 201 | }, |
Antonio Maiorano | 83bdc7f | 2023-08-21 15:29:35 +0000 | [diff] [blame] | 202 | |
Antonio Maiorano | ad5e108 | 2023-06-22 20:45:54 +0000 | [diff] [blame] | 203 | 'third_party/dxheaders': { |
| 204 | # The non-Windows build of DXC depends on DirectX-Headers, and at a specific commit (not ToT) |
| 205 | 'url': '{chromium_git}/external/github.com/microsoft/DirectX-Headers@980971e835876dc0cde415e8f9bc646e64667bf7', |
Austin Eng | c02f143 | 2023-07-05 22:38:39 +0000 | [diff] [blame] | 206 | 'condition': 'host_os != "win"', |
Antonio Maiorano | ad5e108 | 2023-06-22 20:45:54 +0000 | [diff] [blame] | 207 | }, |
| 208 | |
Antonio Maiorano | 83bdc7f | 2023-08-21 15:29:35 +0000 | [diff] [blame] | 209 | 'third_party/khronos/OpenGL-Registry': { |
| 210 | 'url': '{chromium_git}/external/github.com/KhronosGroup/OpenGL-Registry@5bae8738b23d06968e7c3a41308568120943ae77', |
| 211 | }, |
| 212 | |
| 213 | 'third_party/khronos/EGL-Registry': { |
| 214 | 'url': '{chromium_git}/external/github.com/KhronosGroup/EGL-Registry@7dea2ed79187cd13f76183c4b9100159b9e3e071', |
| 215 | }, |
| 216 | |
Kai Ninomiya | 5c780d7 | 2022-03-17 21:43:17 +0000 | [diff] [blame] | 217 | # WebGPU CTS - not used directly by Dawn, only transitively by Chromium. |
| 218 | 'third_party/webgpu-cts': { |
Dawn Automated Expectations | adfc590 | 2023-12-06 15:46:13 +0000 | [diff] [blame] | 219 | 'url': '{chromium_git}/external/github.com/gpuweb/cts@6590a34b55bca2cd9bb93a58a1a6a95271f27334', |
Kai Ninomiya | 5c780d7 | 2022-03-17 21:43:17 +0000 | [diff] [blame] | 220 | 'condition': 'build_with_chromium', |
| 221 | }, |
| 222 | |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 223 | # Dependencies required to build / run Dawn NodeJS bindings |
Ben Clayton | dc890d6 | 2021-09-27 22:55:39 +0000 | [diff] [blame] | 224 | 'third_party/node-api-headers': { |
| 225 | 'url': '{github_git}/nodejs/node-api-headers.git@d68505e4055ecb630e14c26c32e5c2c65e179bba', |
| 226 | 'condition': 'dawn_node', |
| 227 | }, |
| 228 | 'third_party/node-addon-api': { |
| 229 | 'url': '{github_git}/nodejs/node-addon-api.git@4a3de56c3e4ed0031635a2f642b27efeeed00add', |
| 230 | 'condition': 'dawn_node', |
| 231 | }, |
| 232 | 'third_party/gpuweb': { |
François Beaufort | cdfcfca | 2023-11-25 06:05:33 +0000 | [diff] [blame] | 233 | 'url': '{github_git}/gpuweb/gpuweb.git@a6805d5298c6979392768ed13f442e35b9a35b22', |
Ben Clayton | dc890d6 | 2021-09-27 22:55:39 +0000 | [diff] [blame] | 234 | 'condition': 'dawn_node', |
| 235 | }, |
Austin Eng | 4948c81 | 2021-10-15 14:28:32 +0000 | [diff] [blame] | 236 | |
| 237 | 'tools/golang': { |
Austin Eng | 4948c81 | 2021-10-15 14:28:32 +0000 | [diff] [blame] | 238 | 'packages': [{ |
| 239 | 'package': 'infra/3pp/tools/go/${{platform}}', |
| 240 | 'version': Var('dawn_go_version'), |
| 241 | }], |
| 242 | 'dep_type': 'cipd', |
| 243 | }, |
| 244 | |
| 245 | 'tools/cmake': { |
| 246 | 'condition': 'dawn_node and (host_os == "mac" or host_os == "linux")', |
| 247 | 'packages': [{ |
| 248 | 'package': 'infra/3pp/tools/cmake/${{platform}}', |
| 249 | 'version': Var('dawn_cmake_version'), |
| 250 | }], |
| 251 | 'dep_type': 'cipd', |
| 252 | }, |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 253 | |
Junji Watanabe | 4ad7f01 | 2022-10-03 02:48:52 +0000 | [diff] [blame] | 254 | 'third_party/ninja': { |
| 255 | 'packages': [ |
| 256 | { |
| 257 | 'package': 'infra/3pp/tools/ninja/${{platform}}', |
| 258 | 'version': Var('dawn_ninja_version'), |
| 259 | } |
| 260 | ], |
| 261 | 'dep_type': 'cipd', |
| 262 | }, |
| 263 | |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 264 | # RBE dependencies |
| 265 | 'buildtools/reclient': { |
| 266 | 'packages': [ |
| 267 | { |
| 268 | 'package': Var('reclient_package') + '${{platform}}', |
| 269 | 'version': Var('reclient_version'), |
| 270 | } |
| 271 | ], |
| 272 | 'dep_type': 'cipd', |
| 273 | 'condition': 'dawn_standalone', |
| 274 | }, |
Ryan Harrison | 29fc5e9 | 2023-07-17 16:12:27 +0000 | [diff] [blame] | 275 | |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 276 | # Misc dependencies inherited from Tint |
Ryan Harrison | 3374f43 | 2022-03-28 18:01:02 +0000 | [diff] [blame] | 277 | 'third_party/protobuf': { |
Ben Clayton | de2686e | 2023-11-16 12:39:06 +0000 | [diff] [blame] | 278 | 'url': '{chromium_git}/chromium/src/third_party/protobuf@41759e11ec427e29e1a72b9401d2af3f6e02d839', |
| 279 | 'condition': 'dawn_standalone', |
| 280 | }, |
| 281 | |
| 282 | 'tools/protoc_wrapper': { |
| 283 | 'url': '{chromium_git}/chromium/src/tools/protoc_wrapper@b5ea227bd88235ab3ccda964d5f3819c4e2d8032', |
Ryan Harrison | e87ac76 | 2022-04-06 15:37:27 -0400 | [diff] [blame] | 284 | 'condition': 'dawn_standalone', |
Ryan Harrison | 3374f43 | 2022-03-28 18:01:02 +0000 | [diff] [blame] | 285 | }, |
Arthur Sonzogni | 8b28afe | 2023-10-12 16:06:04 +0000 | [diff] [blame] | 286 | |
| 287 | # Dependencies for PartitionAlloc. |
| 288 | # Doc: https://docs.google.com/document/d/1wz45t0alQthsIU9P7_rQcfQyqnrBMXzrOjSzdQo-V-A |
| 289 | 'third_party/partition_alloc': { |
Arthur Sonzogni | 58f8ed2 | 2023-11-30 09:30:52 +0000 | [diff] [blame] | 290 | 'url': '{chromium_git}/chromium/src/base/allocator/partition_allocator.git@6f90cb04abb81942abaab7b63d34c02882208172', |
Arthur Sonzogni | 8b28afe | 2023-10-12 16:06:04 +0000 | [diff] [blame] | 291 | 'condition': 'dawn_standalone', |
| 292 | }, |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | hooks = [ |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 296 | # Pull the compilers and system libraries for hermetic builds |
| 297 | { |
| 298 | 'name': 'sysroot_x86', |
| 299 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 300 | 'condition': 'dawn_standalone and checkout_linux and (checkout_x86 or checkout_x64)', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 301 | 'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 302 | '--arch=x86'], |
| 303 | }, |
| 304 | { |
| 305 | 'name': 'sysroot_x64', |
| 306 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 307 | 'condition': 'dawn_standalone and checkout_linux and checkout_x64', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 308 | 'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 309 | '--arch=x64'], |
| 310 | }, |
| 311 | { |
Corentin Wallez | d4e7f08 | 2020-11-17 21:16:31 +0000 | [diff] [blame] | 312 | # Update the Mac toolchain if possible, this makes builders use "hermetic XCode" which is |
| 313 | # is more consistent (only changes when rolling build/) and is cached. |
| 314 | 'name': 'mac_toolchain', |
| 315 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 316 | 'condition': 'dawn_standalone and checkout_mac', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 317 | 'action': ['python3', 'build/mac_toolchain.py'], |
Corentin Wallez | d4e7f08 | 2020-11-17 21:16:31 +0000 | [diff] [blame] | 318 | }, |
| 319 | { |
Peng Huang | 78583a1 | 2023-02-10 13:53:31 +0000 | [diff] [blame] | 320 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 321 | 'name': 'ciopfs_linux', |
| 322 | 'pattern': '.', |
Peng Huang | 708a077 | 2023-02-13 11:38:38 +0000 | [diff] [blame] | 323 | 'condition': 'dawn_standalone and checkout_win and host_os == "linux"', |
Peng Huang | 78583a1 | 2023-02-10 13:53:31 +0000 | [diff] [blame] | 324 | 'action': [ 'download_from_google_storage', |
| 325 | '--no_resume', |
| 326 | '--no_auth', |
| 327 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 328 | '-s', 'build/ciopfs.sha1', |
| 329 | ] |
| 330 | }, |
| 331 | { |
Corentin Wallez | 682c44a | 2018-08-13 17:48:16 +0200 | [diff] [blame] | 332 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 333 | 'name': 'win_toolchain', |
| 334 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 335 | 'condition': 'dawn_standalone and checkout_win', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 336 | 'action': ['python3', 'build/vs_toolchain.py', 'update', '--force'], |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 337 | }, |
| 338 | { |
| 339 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 340 | 'name': 'clang', |
| 341 | 'pattern': '.', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 342 | 'action': ['python3', 'tools/clang/scripts/update.py'], |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 343 | 'condition': 'dawn_standalone', |
| 344 | }, |
| 345 | { |
dan sinclair | 93cf346 | 2022-05-16 12:58:24 +0000 | [diff] [blame] | 346 | # This is also supposed to support the same set of platforms as 'clang' |
| 347 | # above. LLVM ToT support isn't provided at the moment. |
| 348 | 'name': 'clang_tidy', |
| 349 | 'pattern': '.', |
Corentin Wallez | c4051b1 | 2022-05-17 08:21:02 +0000 | [diff] [blame] | 350 | 'condition': 'dawn_standalone and checkout_clang_tidy', |
dan sinclair | 93cf346 | 2022-05-16 12:58:24 +0000 | [diff] [blame] | 351 | 'action': ['python3', 'tools/clang/scripts/update.py', |
| 352 | '--package=clang-tidy'], |
| 353 | }, |
| 354 | { |
danakj | 4090b7d | 2023-10-24 17:49:01 +0000 | [diff] [blame] | 355 | 'name': 'rust', |
| 356 | 'pattern': '.', |
| 357 | 'action': ['python3', 'tools/rust/update_rust.py'], |
| 358 | 'condition': 'dawn_standalone and checkout_rust', |
| 359 | }, |
| 360 | { |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 361 | # Pull rc binaries using checked-in hashes. |
| 362 | 'name': 'rc_win', |
| 363 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 364 | 'condition': 'dawn_standalone and checkout_win and host_os == "win"', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 365 | 'action': [ 'download_from_google_storage', |
| 366 | '--no_resume', |
| 367 | '--no_auth', |
| 368 | '--bucket', 'chromium-browser-clang/rc', |
Corentin Wallez | 1a0596d | 2018-09-10 15:16:10 +0200 | [diff] [blame] | 369 | '-s', 'build/toolchain/win/rc/win/rc.exe.sha1', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 370 | ], |
| 371 | }, |
Peng Huang | 78583a1 | 2023-02-10 13:53:31 +0000 | [diff] [blame] | 372 | { |
| 373 | 'name': 'rc_linux', |
| 374 | 'pattern': '.', |
Peng Huang | 708a077 | 2023-02-13 11:38:38 +0000 | [diff] [blame] | 375 | 'condition': 'dawn_standalone and checkout_win and host_os == "linux"', |
Peng Huang | 78583a1 | 2023-02-10 13:53:31 +0000 | [diff] [blame] | 376 | 'action': [ 'download_from_google_storage', |
| 377 | '--no_resume', |
| 378 | '--no_auth', |
| 379 | '--bucket', 'chromium-browser-clang/rc', |
| 380 | '-s', 'build/toolchain/win/rc/linux64/rc.sha1', |
Antonio Maiorano | ef9da42 | 2023-09-21 17:53:34 +0000 | [diff] [blame] | 381 | ], |
| 382 | }, |
| 383 | { |
| 384 | 'name': 'rc_mac', |
| 385 | 'pattern': '.', |
| 386 | 'condition': 'dawn_standalone and checkout_win and host_os == "mac"', |
| 387 | 'action': [ 'download_from_google_storage', |
| 388 | '--no_resume', |
| 389 | '--no_auth', |
| 390 | '--bucket', 'chromium-browser-clang/rc', |
| 391 | '-s', 'build/toolchain/win/rc/mac/rc.sha1', |
| 392 | ], |
Peng Huang | 78583a1 | 2023-02-10 13:53:31 +0000 | [diff] [blame] | 393 | }, |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 394 | # Pull clang-format binaries using checked-in hashes. |
| 395 | { |
Corentin Wallez | 51723bd | 2022-04-07 10:40:46 +0000 | [diff] [blame] | 396 | 'name': 'clang_format_win', |
| 397 | 'pattern': '.', |
| 398 | 'condition': 'dawn_standalone and host_os == "win"', |
| 399 | 'action': [ 'download_from_google_storage', |
| 400 | '--no_resume', |
| 401 | '--no_auth', |
| 402 | '--bucket', 'chromium-clang-format', |
| 403 | '-s', 'buildtools/win/clang-format.exe.sha1', |
| 404 | ], |
| 405 | }, |
| 406 | { |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 407 | 'name': 'clang_format_mac_x64', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 408 | 'pattern': '.', |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 409 | 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "x64"', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 410 | 'action': [ 'download_from_google_storage', |
| 411 | '--no_resume', |
| 412 | '--no_auth', |
| 413 | '--bucket', 'chromium-clang-format', |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 414 | '-s', 'buildtools/mac/clang-format.x64.sha1', |
| 415 | '-o', 'buildtools/mac/clang-format', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 416 | ], |
| 417 | }, |
| 418 | { |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 419 | 'name': 'clang_format_mac_arm64', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 420 | 'pattern': '.', |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 421 | 'condition': 'dawn_standalone and host_os == "mac" and host_cpu == "arm64"', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 422 | 'action': [ 'download_from_google_storage', |
| 423 | '--no_resume', |
| 424 | '--no_auth', |
| 425 | '--bucket', 'chromium-clang-format', |
Ben Clayton | 088a600 | 2022-04-06 19:57:42 +0000 | [diff] [blame] | 426 | '-s', 'buildtools/mac/clang-format.arm64.sha1', |
| 427 | '-o', 'buildtools/mac/clang-format', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 428 | ], |
| 429 | }, |
| 430 | { |
| 431 | 'name': 'clang_format_linux', |
| 432 | 'pattern': '.', |
Corentin Wallez | 2015b2f | 2021-03-04 17:37:55 +0000 | [diff] [blame] | 433 | 'condition': 'dawn_standalone and host_os == "linux"', |
Corentin Wallez | 131e619 | 2020-11-03 18:18:06 +0000 | [diff] [blame] | 434 | 'action': [ 'download_from_google_storage', |
| 435 | '--no_resume', |
| 436 | '--no_auth', |
| 437 | '--bucket', 'chromium-clang-format', |
| 438 | '-s', 'buildtools/linux64/clang-format.sha1', |
| 439 | ], |
| 440 | }, |
Corentin Wallez | 15d8cb7 | 2018-11-19 10:13:31 +0000 | [diff] [blame] | 441 | # Update build/util/LASTCHANGE. |
| 442 | { |
| 443 | 'name': 'lastchange', |
| 444 | 'pattern': '.', |
Jiajie Hu | 2ffc55a | 2020-07-01 05:08:36 +0000 | [diff] [blame] | 445 | 'condition': 'dawn_standalone', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 446 | 'action': ['python3', 'build/util/lastchange.py', |
Corentin Wallez | 15d8cb7 | 2018-11-19 10:13:31 +0000 | [diff] [blame] | 447 | '-o', 'build/util/LASTCHANGE'], |
| 448 | }, |
Austin Eng | 4948c81 | 2021-10-15 14:28:32 +0000 | [diff] [blame] | 449 | # TODO(https://crbug.com/1180257): Use CIPD for CMake on Windows. |
| 450 | { |
| 451 | 'name': 'cmake_win32', |
| 452 | 'pattern': '.', |
| 453 | 'condition': 'dawn_node and host_os == "win"', |
| 454 | 'action': [ 'download_from_google_storage', |
| 455 | '--no_resume', |
| 456 | '--platform=win32', |
| 457 | '--no_auth', |
| 458 | '--bucket', 'chromium-tools', |
| 459 | Var('dawn_cmake_win32_sha1'), |
| 460 | '-o', 'tools/cmake-win32.zip' |
| 461 | ], |
| 462 | }, |
| 463 | { |
| 464 | 'name': 'cmake_win32_extract', |
| 465 | 'pattern': '.', |
| 466 | 'condition': 'dawn_node and host_os == "win"', |
Corentin Wallez | d520366 | 2022-01-05 15:54:08 +0000 | [diff] [blame] | 467 | 'action': [ 'python3', |
Austin Eng | 4948c81 | 2021-10-15 14:28:32 +0000 | [diff] [blame] | 468 | 'scripts/extract.py', |
| 469 | 'tools/cmake-win32.zip', |
| 470 | 'tools/cmake-win32/', |
| 471 | ], |
| 472 | }, |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 473 | |
| 474 | # Node binaries, when dawn_node is enabled |
| 475 | { |
| 476 | 'name': 'node_linux64', |
| 477 | 'pattern': '.', |
| 478 | 'condition': 'dawn_node and host_os == "linux"', |
| 479 | 'action': [ 'download_from_google_storage', |
| 480 | '--no_resume', |
| 481 | '--extract', |
| 482 | '--no_auth', |
Ben Clayton | 442f3d0 | 2023-11-13 17:56:32 +0000 | [diff] [blame] | 483 | '--bucket', 'chromium-nodejs/20.9.0', |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 484 | Var('node_linux_x64_sha'), |
| 485 | '-o', 'third_party/node/node-linux-x64.tar.gz', |
| 486 | ], |
| 487 | }, |
| 488 | { |
| 489 | 'name': 'node_mac', |
| 490 | 'pattern': '.', |
| 491 | 'condition': 'dawn_node and host_os == "mac"', |
| 492 | 'action': [ 'download_from_google_storage', |
| 493 | '--no_resume', |
| 494 | '--extract', |
| 495 | '--no_auth', |
Ben Clayton | 442f3d0 | 2023-11-13 17:56:32 +0000 | [diff] [blame] | 496 | '--bucket', 'chromium-nodejs/20.9.0', |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 497 | Var('node_darwin_x64_sha'), |
| 498 | '-o', 'third_party/node/node-darwin-x64.tar.gz', |
| 499 | ], |
| 500 | }, |
| 501 | { |
| 502 | 'name': 'node_mac_arm64', |
| 503 | 'pattern': '.', |
| 504 | 'condition': 'dawn_node and host_os == "mac"', |
| 505 | 'action': [ 'download_from_google_storage', |
| 506 | '--no_resume', |
| 507 | '--extract', |
| 508 | '--no_auth', |
Ben Clayton | 442f3d0 | 2023-11-13 17:56:32 +0000 | [diff] [blame] | 509 | '--bucket', 'chromium-nodejs/20.9.0', |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 510 | Var('node_darwin_arm64_sha'), |
| 511 | '-o', 'third_party/node/node-darwin-arm64.tar.gz', |
| 512 | ], |
| 513 | }, |
| 514 | { |
| 515 | 'name': 'node_win', |
| 516 | 'pattern': '.', |
| 517 | 'condition': 'dawn_node and host_os == "win"', |
| 518 | 'action': [ 'download_from_google_storage', |
| 519 | '--no_resume', |
| 520 | '--no_auth', |
Ben Clayton | 442f3d0 | 2023-11-13 17:56:32 +0000 | [diff] [blame] | 521 | '--bucket', 'chromium-nodejs/20.9.0', |
Ben Clayton | 6f8ff74 | 2022-03-28 19:55:42 +0000 | [diff] [blame] | 522 | Var('node_win_x64_sha'), |
| 523 | '-o', 'third_party/node/node.exe', |
| 524 | ], |
| 525 | }, |
Ryan Harrison | ce158be | 2023-07-20 17:06:56 +0000 | [diff] [blame] | 526 | { |
| 527 | # Download remote exec cfg files |
| 528 | 'name': 'fetch_reclient_cfgs', |
| 529 | 'pattern': '.', |
Austin Eng | d6c4f66 | 2023-07-21 01:00:22 +0000 | [diff] [blame] | 530 | 'condition': 'download_remoteexec_cfg and dawn_standalone', |
Ryan Harrison | ce158be | 2023-07-20 17:06:56 +0000 | [diff] [blame] | 531 | 'action': ['python3', |
| 532 | 'buildtools/reclient_cfgs/fetch_reclient_cfgs.py', |
| 533 | '--rbe_instance', |
| 534 | Var('rbe_instance'), |
| 535 | '--reproxy_cfg_template', |
| 536 | 'reproxy.cfg.template', |
| 537 | '--rewrapper_cfg_project', |
| 538 | Var('rewrapper_cfg_project'), |
| 539 | '--quiet', |
Ryan Harrison | ce158be | 2023-07-20 17:06:56 +0000 | [diff] [blame] | 540 | ], |
| 541 | }, |
Corentin Wallez | ca81bd3 | 2018-09-03 11:55:58 +0200 | [diff] [blame] | 542 | ] |
| 543 | |
| 544 | recursedeps = [ |
Stephen White | f1fa60b | 2021-01-06 17:41:50 +0000 | [diff] [blame] | 545 | 'third_party/vulkan-deps', |
Corentin Wallez | 21a2385 | 2018-07-31 18:50:03 +0200 | [diff] [blame] | 546 | ] |