blob: ee619dab72a46adcd32ebd22303f6bb71221d6c6 [file] [log] [blame]
Jamie Madill4237e532019-06-28 11:14:31 -04001# This file is used to manage the dependencies of the ANGLE git repo. It is
2# used by gclient to determine what version of each dependency to check out, and
3# where.
4
Jamie Madill8ba50492019-10-10 17:46:54 -04005# Avoids the need for a custom root variable.
6use_relative_paths = True
7use_relative_hooks = True
8
Jamie Madill2fdd3da2015-07-20 10:14:54 -04009vars = {
Jamie Madill37ee8a62016-12-13 15:18:58 -050010 'android_git': 'https://android.googlesource.com',
Jamie Madill2fdd3da2015-07-20 10:14:54 -040011 'chromium_git': 'https://chromium.googlesource.com',
Jamie Madill67a017f2019-10-10 15:27:27 -040012 'chrome_internal_git': 'https://chrome-internal.googlesource.com',
Jamie Madill8be7a4c2019-09-19 12:48:31 -040013 'swiftshader_git': 'https://swiftshader.googlesource.com',
Jamie Madill027717f2018-04-13 15:51:24 -040014
Edward Lemur8ae09b02018-06-01 14:18:28 -040015 # This variable is overrided in Chromium's DEPS file.
16 'build_with_chromium': False,
17
Jamie Madill67a017f2019-10-10 15:27:27 -040018 # Only check out public sources by default. This can be overridden with custom_vars.
19 # We overload Chromium's 'src-internal' for simplicity.
20 # TOOD(ynovikov): Use checkout_angle_internal custom variable instead.
Jamie Madill4237e532019-06-28 11:14:31 -040021 'checkout_src_internal': False,
22
Jamie Madill1948af32019-10-11 17:49:24 -040023 # Version of Chromium our Chromium-based DEPS are mirrored from.
Jamie Madill7d51cc92019-10-25 08:06:35 -040024 'chromium_revision': '60074bf9e0d443e5ef8e2c78694ce71bf419de3f',
Jamie Madill1948af32019-10-11 17:49:24 -040025
Edward Lemur8ae09b02018-06-01 14:18:28 -040026 # Current revision of dEQP.
Jamie Madill159c4b02019-06-28 13:58:50 -040027 'deqp_revision': 'd3eef28e67ce6795ba3a2124aaa977819729d45f',
Edward Lemur8ae09b02018-06-01 14:18:28 -040028
29 # Current revision of glslang, the Khronos SPIRV compiler.
angle-autorollec14fd52019-10-25 07:01:10 +000030 'glslang_revision': 'b131630e7c749a5dc19faa458024260c71fb170f',
Edward Lemur8ae09b02018-06-01 14:18:28 -040031
Jamie Madill07035682019-10-25 09:00:41 -040032 # Current revision of googletest.
33 # Note: this dep cannot be auto-rolled b/c of nesting.
34 'googletest_revision': 'f2fb48c3b3d79a75a88a99fba6576b25d42ec528',
35
Edward Lemur8ae09b02018-06-01 14:18:28 -040036 # Current revision fo the SPIRV-Headers Vulkan support library.
angle-autoroll4bad5352019-10-25 11:54:24 +000037 'spirv_headers_revision': 'af64a9e826bf5bb5fcd2434dd71be1e41e922563',
Edward Lemur8ae09b02018-06-01 14:18:28 -040038
39 # Current revision of SPIRV-Tools for Vulkan.
angle-autoroll4bad5352019-10-25 11:54:24 +000040 'spirv_tools_revision': 'b34fa731931baf3e3d58a7634cef3ffc6e1182c5',
Edward Lemur8ae09b02018-06-01 14:18:28 -040041
Tobin Ehlisb971f492018-05-24 10:56:17 -060042 # Current revision of Khronos Vulkan-Headers.
Tobin Ehlis6dee1762019-10-17 15:26:03 -060043 'vulkan_headers_revision': 'd287523f48dba1b669866c5d6625b29931948e39',
Tobin Ehlisb971f492018-05-24 10:56:17 -060044
45 # Current revision of Khronos Vulkan-Loader.
Tobin Ehlis88a99e42019-10-23 12:07:41 -060046 'vulkan_loader_revision': '96bd3651364f3145d7b8d495497f40f376e37a81',
Tobin Ehlisb971f492018-05-24 10:56:17 -060047
48 # Current revision of Khronos Vulkan-Tools.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060049 'vulkan_tools_revision': '40cd2166a44647a4283517e31af4589410c654eb',
Tobin Ehlisb971f492018-05-24 10:56:17 -060050
51 # Current revision of Khronos Vulkan-ValidationLayers.
Jamie Madilld4affcd2019-10-22 12:32:04 -040052 'vulkan_validation_revision': 'f8ea20adee82d262134fc3fa1a417a6e86fdff23',
Jamie Madill2fdd3da2015-07-20 10:14:54 -040053}
54
alokp@chromium.org29d56fb2010-04-06 15:42:22 +000055deps = {
alokp@chromium.org416fcd32012-04-11 16:23:44 +000056
Jamie Madill8ba50492019-10-10 17:46:54 -040057 'build': {
Jamie Madill7d51cc92019-10-25 08:06:35 -040058 'url': '{chromium_git}/chromium/src/build.git@a193dcc6972da816f06d8e3ea82ee9181e398b21',
Edward Lemur8ae09b02018-06-01 14:18:28 -040059 'condition': 'not build_with_chromium',
60 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040061
Jamie Madill8ba50492019-10-10 17:46:54 -040062 'buildtools': {
Jamie Madill9c2df982019-10-09 16:45:13 -040063 'url': '{chromium_git}/chromium/src/buildtools.git@cf454b247c611167388742c7a31ef138a6031172',
Edward Lemur8ae09b02018-06-01 14:18:28 -040064 'condition': 'not build_with_chromium',
65 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040066
Jamie Madill8ba50492019-10-10 17:46:54 -040067 'testing': {
Jamie Madill7d51cc92019-10-25 08:06:35 -040068 'url': '{chromium_git}/chromium/src/testing@f712af4fd9133068c6d9244cd87fca28979695c0',
Edward Lemur8ae09b02018-06-01 14:18:28 -040069 'condition': 'not build_with_chromium',
70 },
alokp@chromium.org5cd9c602012-05-16 23:37:50 +000071
Jamie Madill9e76f562015-10-02 08:57:14 -040072 # Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
Jamie Madill8ba50492019-10-10 17:46:54 -040073 'third_party/cherry': {
Edward Lemur8ae09b02018-06-01 14:18:28 -040074 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
75 'condition': 'not build_with_chromium',
76 },
Jamie Madill9e76f562015-10-02 08:57:14 -040077
Jamie Madill8ba50492019-10-10 17:46:54 -040078 'third_party/deqp/src': {
Jamie Madill915d4062019-01-28 18:15:43 -050079 'url': '{chromium_git}/external/deqp@{deqp_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -040080 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050081
Jamie Madill8ba50492019-10-10 17:46:54 -040082 'third_party/fuchsia-sdk': {
Jamie Madill130fdbc2019-10-10 19:13:07 -040083 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44',
Jamie Madill9f958342019-04-08 09:40:40 -040084 'condition': 'checkout_fuchsia and not build_with_chromium',
85 },
86
Jamie Madill67a017f2019-10-10 15:27:27 -040087 # Closed-source OpenGL ES 1.1 Conformance tests.
Jamie Madill8ba50492019-10-10 17:46:54 -040088 'third_party/gles1_conform': {
Jamie Madill67a017f2019-10-10 15:27:27 -040089 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
90 'condition': 'checkout_src_internal',
91 },
92
Jamie Madill55959b02019-03-05 10:07:41 -050093 # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
Jamie Madill8ba50492019-10-10 17:46:54 -040094 'third_party/glmark2/src': {
Jamie Madill2971fd32019-08-12 16:53:21 -040095 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e',
Jamie Madill55959b02019-03-05 10:07:41 -050096 },
97
Jamie Madill8ba50492019-10-10 17:46:54 -040098 'third_party/glslang/src': {
Tobin Ehlis317a9eb2018-11-29 12:51:46 -070099 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500100 'condition': 'not build_with_chromium',
Jamie Madill55959b02019-03-05 10:07:41 -0500101 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500102
Jamie Madill8ba50492019-10-10 17:46:54 -0400103 'third_party/googletest': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400104 'url': '{chromium_git}/chromium/src/third_party/googletest@60616473f7d8414aeb7575b487beecc7369fd52f',
Jamie Madillcf9b2852019-02-13 09:15:26 -0500105 'condition': 'not build_with_chromium',
106 },
107
Jamie Madill55959b02019-03-05 10:07:41 -0500108 # libjpeg_turbo is used by glmark2.
Jamie Madill8ba50492019-10-10 17:46:54 -0400109 'third_party/libjpeg_turbo': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400110 'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@bc13578529255ec75005ffc98aae151666122892',
Jamie Madill55959b02019-03-05 10:07:41 -0500111 'condition': 'not build_with_chromium',
112 },
113
Jamie Madill8ba50492019-10-10 17:46:54 -0400114 'third_party/libpng/src': {
Edward Lemur8ae09b02018-06-01 14:18:28 -0400115 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
116 'condition': 'not build_with_chromium',
117 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500118
Jamie Madill8ba50492019-10-10 17:46:54 -0400119 'third_party/jsoncpp': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400120 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@571788934b5ee8643d53e5d054534abbe6006168',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500121 'condition': 'not build_with_chromium',
122 },
Jamie Madill7ada46c2018-09-06 10:58:26 -0400123
Jamie Madill8ba50492019-10-10 17:46:54 -0400124 'third_party/jsoncpp/source': {
Jamie Madill1948af32019-10-11 17:49:24 -0400125 'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp.git@645250b6690785be60ab6780ce4b58698d884d11',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500126 'condition': 'not build_with_chromium',
127 },
Tobin Ehlis5fdc38c2018-08-28 09:20:57 -0600128
Jamie Madill8ba50492019-10-10 17:46:54 -0400129 'third_party/Python-Markdown': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700130 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@36657c103ce5964733bbbb29377085e9cc1a9472',
Jamie Madill9f958342019-04-08 09:40:40 -0400131 'condition': 'not build_with_chromium',
132 },
133
Jamie Madill8ba50492019-10-10 17:46:54 -0400134 'third_party/qemu-linux-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500135 'packages': [
136 {
137 'package': 'fuchsia/qemu/linux-amd64',
138 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
139 },
140 ],
141 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
142 'dep_type': 'cipd',
143 },
144
Jamie Madill8ba50492019-10-10 17:46:54 -0400145 'third_party/qemu-mac-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500146 'packages': [
147 {
148 'package': 'fuchsia/qemu/mac-amd64',
149 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
150 },
151 ],
152 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
153 'dep_type': 'cipd',
154 },
155
Jamie Madill8ba50492019-10-10 17:46:54 -0400156 'third_party/rapidjson/src': {
Jamie Madill46d32e02019-02-25 17:13:16 -0500157 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
158 },
159
Jamie Madill8ba50492019-10-10 17:46:54 -0400160 'third_party/spirv-headers/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500161 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200162 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400163 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500164
Jamie Madill8ba50492019-10-10 17:46:54 -0400165 'third_party/spirv-tools/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500166 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200167 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400168 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500169
Jamie Madill8ba50492019-10-10 17:46:54 -0400170 'third_party/SwiftShader': {
angle-autoroll003629a2019-10-25 15:24:20 +0000171 'url': '{swiftshader_git}/SwiftShader@f44f7c066a67ff3ea25fa3d8e7f31185e30e9385',
Jamie Madill8be7a4c2019-09-19 12:48:31 -0400172 'condition': 'not build_with_chromium',
173 },
174
Jamie Madill8ba50492019-10-10 17:46:54 -0400175 'third_party/vulkan-headers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600176 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
177 },
178
Jamie Madill8ba50492019-10-10 17:46:54 -0400179 'third_party/vulkan-loader/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600180 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
181 },
182
Jamie Madill8ba50492019-10-10 17:46:54 -0400183 'third_party/vulkan-tools/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600184 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
185 },
186
Jamie Madill8ba50492019-10-10 17:46:54 -0400187 'third_party/vulkan-validation-layers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600188 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400189 },
Jamie Madill3cd438d2015-03-17 11:25:27 -0400190
Jamie Madill8ba50492019-10-10 17:46:54 -0400191 'third_party/yasm': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400192 'url': '{chromium_git}/chromium/src/third_party/yasm@cc10bc0f1d96a4bae0e775f2ac2b6ac5b08078c6',
Jamie Madill55959b02019-03-05 10:07:41 -0500193 'condition': 'not build_with_chromium',
194 },
195
Jamie Madill8ba50492019-10-10 17:46:54 -0400196 'third_party/yasm/source/patched-yasm': {
Jamie Madill55959b02019-03-05 10:07:41 -0500197 'url': '{chromium_git}/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
198 'condition': 'not build_with_chromium',
199 },
200
Jamie Madill8ba50492019-10-10 17:46:54 -0400201 'third_party/zlib': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400202 'url': '{chromium_git}/chromium/src/third_party/zlib@403ca5ad3a324530113a89a20fcabcea92242721',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400203 'condition': 'not build_with_chromium',
204 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400205
Jamie Madill8ba50492019-10-10 17:46:54 -0400206 'tools/clang': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400207 'url': '{chromium_git}/chromium/src/tools/clang.git@662cbb8d60f813b110f637f38adf60d9b2c57418',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400208 'condition': 'not build_with_chromium',
209 },
Michael Spang229fc832019-01-21 18:09:15 -0500210
Jamie Madill8ba50492019-10-10 17:46:54 -0400211 'tools/md_browser': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700212 'url': '{chromium_git}/chromium/src/tools/md_browser@0bfd826f8566a99923e64a782908faca72bc457c',
Jamie Madill9f958342019-04-08 09:40:40 -0400213 'condition': 'not build_with_chromium',
Michael Spang229fc832019-01-21 18:09:15 -0500214 },
Jamie Madilldf0ce012019-09-05 11:04:39 -0400215
Jamie Madill8ba50492019-10-10 17:46:54 -0400216 'tools/memory': {
Jamie Madilldf0ce012019-09-05 11:04:39 -0400217 'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee',
218 'condition': 'not build_with_chromium',
219 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000220}
221
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000222hooks = [
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400223 # Pull clang-format binaries using checked-in hashes.
224 {
225 'name': 'clang_format_win',
226 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400227 'condition': 'host_os == "win" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400228 'action': [ 'download_from_google_storage',
229 '--no_resume',
230 '--platform=win32',
231 '--no_auth',
232 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400233 '-s', 'buildtools/win/clang-format.exe.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400234 ],
235 },
236 {
237 'name': 'clang_format_mac',
238 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400239 'condition': 'host_os == "mac" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400240 'action': [ 'download_from_google_storage',
241 '--no_resume',
242 '--platform=darwin',
243 '--no_auth',
244 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400245 '-s', 'buildtools/mac/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400246 ],
247 },
248 {
249 'name': 'clang_format_linux',
250 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400251 'condition': 'host_os == "linux" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400252 'action': [ 'download_from_google_storage',
253 '--no_resume',
254 '--platform=linux*',
255 '--no_auth',
256 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400257 '-s', 'buildtools/linux64/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400258 ],
259 },
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600260 {
261 'name': 'sysroot_x86',
262 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400263 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400264 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600265 '--arch=x86'],
266 },
267 {
268 'name': 'sysroot_x64',
269 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400270 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400271 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600272 '--arch=x64'],
273 },
Jamie Madill027717f2018-04-13 15:51:24 -0400274 {
275 # Update the Windows toolchain if necessary. Must run before 'clang' below.
276 'name': 'win_toolchain',
277 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400278 'condition': 'checkout_win and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400279 'action': ['python', 'build/vs_toolchain.py', 'update', '--force'],
Jamie Madill027717f2018-04-13 15:51:24 -0400280 },
Geoff Lang66ae5312019-04-01 16:35:53 -0400281 {
282 # Update the Mac toolchain if necessary.
283 'name': 'mac_toolchain',
284 'pattern': '.',
285 'condition': 'checkout_mac and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400286 'action': ['python', 'build/mac_toolchain.py'],
Geoff Lang66ae5312019-04-01 16:35:53 -0400287 },
Jamie Madill027717f2018-04-13 15:51:24 -0400288
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000289 {
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400290 # Note: On Win, this should run after win_toolchain, as it may use it.
291 'name': 'clang',
292 'pattern': '.',
Jamie Madill8ba50492019-10-10 17:46:54 -0400293 'action': ['python', 'tools/clang/scripts/update.py'],
Edward Lemur8ae09b02018-06-01 14:18:28 -0400294 'condition': 'not build_with_chromium',
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400295 },
Jamie Madill940c48b2017-10-23 23:25:17 -0400296
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400297 {
298 # Update LASTCHANGE.
299 'name': 'lastchange',
300 'pattern': '.',
301 'condition': 'not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400302 'action': ['python', 'build/util/lastchange.py',
303 '-o', 'build/util/LASTCHANGE'],
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400304 },
305
Jamie Madill940c48b2017-10-23 23:25:17 -0400306 # Pull rc binaries using checked-in hashes.
307 {
308 'name': 'rc_win',
309 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400310 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
Jamie Madill940c48b2017-10-23 23:25:17 -0400311 'action': [ 'download_from_google_storage',
312 '--no_resume',
313 '--no_auth',
314 '--bucket', 'chromium-browser-clang/rc',
Jamie Madill8ba50492019-10-10 17:46:54 -0400315 '-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
Jamie Madill940c48b2017-10-23 23:25:17 -0400316 ],
317 },
Michael Spang229fc832019-01-21 18:09:15 -0500318
319 {
320 'name': 'fuchsia_sdk',
321 'pattern': '.',
322 'condition': 'checkout_fuchsia and not build_with_chromium',
323 'action': [
324 'python',
Jamie Madill8ba50492019-10-10 17:46:54 -0400325 'build/fuchsia/update_sdk.py',
Michael Spang229fc832019-01-21 18:09:15 -0500326 ],
327 },
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400328
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400329 # Download glslang validator binary for Linux.
330 {
331 'name': 'linux_glslang_validator',
332 'pattern': '.',
333 'condition': 'checkout_linux and not build_with_chromium',
334 'action': [ 'download_from_google_storage',
335 '--no_resume',
336 '--platform=linux*',
337 '--no_auth',
338 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400339 '-s', 'tools/glslang/glslang_validator.sha1',
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400340 ],
341 },
342
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400343 # Download glslang validator binary for Windows.
344 {
345 'name': 'win_glslang_validator',
346 'pattern': '.',
347 'condition': 'checkout_win and not build_with_chromium',
348 'action': [ 'download_from_google_storage',
349 '--no_resume',
350 '--platform=win32*',
351 '--no_auth',
352 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400353 '-s', 'tools/glslang/glslang_validator.exe.sha1',
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400354 ],
355 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000356]
Jamie Madill20789312016-10-28 14:05:26 -0400357
358recursedeps = [
359 # buildtools provides clang_format.
Jamie Madill8ba50492019-10-10 17:46:54 -0400360 'buildtools',
Jamie Madill07035682019-10-25 09:00:41 -0400361 'third_party/googletest',
Jamie Madill20789312016-10-28 14:05:26 -0400362]