blob: d85d2bd48dc9f4813d99dc4cb3571b28901d0e36 [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 Madill2fdd3da2015-07-20 10:14:54 -04005vars = {
Jamie Madill37ee8a62016-12-13 15:18:58 -05006 'android_git': 'https://android.googlesource.com',
Jamie Madill2fdd3da2015-07-20 10:14:54 -04007 'chromium_git': 'https://chromium.googlesource.com',
Jamie Madill67a017f2019-10-10 15:27:27 -04008 'chrome_internal_git': 'https://chrome-internal.googlesource.com',
Jamie Madill8be7a4c2019-09-19 12:48:31 -04009 'swiftshader_git': 'https://swiftshader.googlesource.com',
Jamie Madill027717f2018-04-13 15:51:24 -040010
Yuly Novikov85d8ee82018-09-12 17:36:57 +000011 # This variable is set on the Chrome infra for compatiblity with gclient.
12 'angle_root': '.',
13
Edward Lemur8ae09b02018-06-01 14:18:28 -040014 # This variable is overrided in Chromium's DEPS file.
15 'build_with_chromium': False,
16
Jamie Madill67a017f2019-10-10 15:27:27 -040017 # Only check out public sources by default. This can be overridden with custom_vars.
18 # We overload Chromium's 'src-internal' for simplicity.
19 # TOOD(ynovikov): Use checkout_angle_internal custom variable instead.
Jamie Madill4237e532019-06-28 11:14:31 -040020 'checkout_src_internal': False,
21
Edward Lemur8ae09b02018-06-01 14:18:28 -040022 # Current revision of dEQP.
Jamie Madill159c4b02019-06-28 13:58:50 -040023 'deqp_revision': 'd3eef28e67ce6795ba3a2124aaa977819729d45f',
Edward Lemur8ae09b02018-06-01 14:18:28 -040024
25 # Current revision of glslang, the Khronos SPIRV compiler.
angle-autoroll23d6a0e2019-10-07 07:01:14 +000026 'glslang_revision': '4b97a1108114107a8082a55e9e0721a40f9536d3',
Edward Lemur8ae09b02018-06-01 14:18:28 -040027
28 # Current revision fo the SPIRV-Headers Vulkan support library.
angle-autorollceac3322019-09-30 07:01:54 +000029 'spirv_headers_revision': '842ec90674627ed2ffef609e3cd79d1562eded01',
Edward Lemur8ae09b02018-06-01 14:18:28 -040030
31 # Current revision of SPIRV-Tools for Vulkan.
angle-autorollad5f7162019-10-10 07:01:22 +000032 'spirv_tools_revision': '82f84c4b8f19a3a59647e851a5b3921d63b7b8e4',
Edward Lemur8ae09b02018-06-01 14:18:28 -040033
Tobin Ehlisb971f492018-05-24 10:56:17 -060034 # Current revision of Khronos Vulkan-Headers.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060035 'vulkan_headers_revision': '5b44df19e040fca0048ab30c553a8c2d2cb9623e',
Tobin Ehlisb971f492018-05-24 10:56:17 -060036
37 # Current revision of Khronos Vulkan-Loader.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060038 'vulkan_loader_revision': 'b5a0995324fa9fb2a6152197b442400e7d7be5b6',
Tobin Ehlisb971f492018-05-24 10:56:17 -060039
40 # Current revision of Khronos Vulkan-Tools.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060041 'vulkan_tools_revision': '40cd2166a44647a4283517e31af4589410c654eb',
Tobin Ehlisb971f492018-05-24 10:56:17 -060042
43 # Current revision of Khronos Vulkan-ValidationLayers.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060044 'vulkan_validation_revision': '9fba37afae13a11bd49ae942bf82e5bf1098e381',
Jamie Madill2fdd3da2015-07-20 10:14:54 -040045}
46
alokp@chromium.org29d56fb2010-04-06 15:42:22 +000047deps = {
alokp@chromium.org416fcd32012-04-11 16:23:44 +000048
Yuly Novikov85d8ee82018-09-12 17:36:57 +000049 '{angle_root}/build': {
Jamie Madill9c2df982019-10-09 16:45:13 -040050 'url': '{chromium_git}/chromium/src/build.git@fd0d28db8039e2aaf9fa35e53e3af6dc9ead8055',
Edward Lemur8ae09b02018-06-01 14:18:28 -040051 'condition': 'not build_with_chromium',
52 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040053
Yuly Novikov85d8ee82018-09-12 17:36:57 +000054 '{angle_root}/buildtools': {
Jamie Madill9c2df982019-10-09 16:45:13 -040055 'url': '{chromium_git}/chromium/src/buildtools.git@cf454b247c611167388742c7a31ef138a6031172',
Edward Lemur8ae09b02018-06-01 14:18:28 -040056 'condition': 'not build_with_chromium',
57 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040058
Yuly Novikov85d8ee82018-09-12 17:36:57 +000059 '{angle_root}/testing': {
Jamie Madill9c2df982019-10-09 16:45:13 -040060 'url': '{chromium_git}/chromium/src/testing@9d2d0dad367ac7e98e64cc6881044c482e1c7eb8',
Edward Lemur8ae09b02018-06-01 14:18:28 -040061 'condition': 'not build_with_chromium',
62 },
alokp@chromium.org5cd9c602012-05-16 23:37:50 +000063
Jamie Madill9e76f562015-10-02 08:57:14 -040064 # Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
Yuly Novikov85d8ee82018-09-12 17:36:57 +000065 '{angle_root}/third_party/cherry': {
Edward Lemur8ae09b02018-06-01 14:18:28 -040066 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
67 'condition': 'not build_with_chromium',
68 },
Jamie Madill9e76f562015-10-02 08:57:14 -040069
Yuly Novikov85d8ee82018-09-12 17:36:57 +000070 '{angle_root}/third_party/deqp/src': {
Jamie Madill915d4062019-01-28 18:15:43 -050071 'url': '{chromium_git}/external/deqp@{deqp_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -040072 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050073
Jamie Madill9f958342019-04-08 09:40:40 -040074 '{angle_root}/third_party/fuchsia-sdk': {
Robert Iannuccida8dad12019-08-08 19:40:48 -070075 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@5fd29151cf35c0813c33cc368a7c78389e3f5caa',
Jamie Madill9f958342019-04-08 09:40:40 -040076 'condition': 'checkout_fuchsia and not build_with_chromium',
77 },
78
Jamie Madill67a017f2019-10-10 15:27:27 -040079 # Closed-source OpenGL ES 1.1 Conformance tests.
80 '{angle_root}/third_party/gles1_conform': {
81 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
82 'condition': 'checkout_src_internal',
83 },
84
Jamie Madill55959b02019-03-05 10:07:41 -050085 # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
86 '{angle_root}/third_party/glmark2/src': {
Jamie Madill2971fd32019-08-12 16:53:21 -040087 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e',
Jamie Madill55959b02019-03-05 10:07:41 -050088 },
89
Yuly Novikov85d8ee82018-09-12 17:36:57 +000090 '{angle_root}/third_party/glslang/src': {
Tobin Ehlis317a9eb2018-11-29 12:51:46 -070091 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -050092 'condition': 'not build_with_chromium',
Jamie Madill55959b02019-03-05 10:07:41 -050093 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050094
Jamie Madillcf9b2852019-02-13 09:15:26 -050095 '{angle_root}/third_party/googletest': {
Robert Iannuccida8dad12019-08-08 19:40:48 -070096 'url': '{chromium_git}/chromium/src/third_party/googletest@c721b68ddecc18bbc6b763b2fe8ab802c22f228a',
Jamie Madillcf9b2852019-02-13 09:15:26 -050097 'condition': 'not build_with_chromium',
98 },
99
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000100 '{angle_root}/third_party/googletest/src': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400101 'url': '{chromium_git}/external/github.com/google/googletest.git@cd17fa2abda2a2e4111cdabd62a87aea16835014',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400102 'condition': 'not build_with_chromium',
103 },
Frank Henigman6b076a02017-10-11 13:28:22 -0400104
Jamie Madill55959b02019-03-05 10:07:41 -0500105 # libjpeg_turbo is used by glmark2.
106 '{angle_root}/third_party/libjpeg_turbo': {
107 'url': '{chromium_git}/chromium/deps/libjpeg_turbo@6dcdade8828297e306cabfdae80f3510f3f3eea2',
108 'condition': 'not build_with_chromium',
109 },
110
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000111 '{angle_root}/third_party/libpng/src': {
Edward Lemur8ae09b02018-06-01 14:18:28 -0400112 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
113 'condition': 'not build_with_chromium',
114 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500115
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000116 '{angle_root}/third_party/jsoncpp': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700117 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@48246a099549ab325c01f69f24a34fc72e5c42e4',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500118 'condition': 'not build_with_chromium',
119 },
Jamie Madill7ada46c2018-09-06 10:58:26 -0400120
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000121 '{angle_root}/third_party/jsoncpp/source': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700122 'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp@645250b6690785be60ab6780ce4b58698d884d11',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500123 'condition': 'not build_with_chromium',
124 },
Tobin Ehlis5fdc38c2018-08-28 09:20:57 -0600125
Jamie Madill9f958342019-04-08 09:40:40 -0400126 '{angle_root}/third_party/Python-Markdown': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700127 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@36657c103ce5964733bbbb29377085e9cc1a9472',
Jamie Madill9f958342019-04-08 09:40:40 -0400128 'condition': 'not build_with_chromium',
129 },
130
Michael Spang229fc832019-01-21 18:09:15 -0500131 '{angle_root}/third_party/qemu-linux-x64': {
132 'packages': [
133 {
134 'package': 'fuchsia/qemu/linux-amd64',
135 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
136 },
137 ],
138 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
139 'dep_type': 'cipd',
140 },
141
142 '{angle_root}/third_party/qemu-mac-x64': {
143 'packages': [
144 {
145 'package': 'fuchsia/qemu/mac-amd64',
146 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
147 },
148 ],
149 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
150 'dep_type': 'cipd',
151 },
152
Jamie Madill46d32e02019-02-25 17:13:16 -0500153 '{angle_root}/third_party/rapidjson/src': {
154 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
155 },
156
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000157 '{angle_root}/third_party/spirv-headers/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500158 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200159 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400160 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500161
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000162 '{angle_root}/third_party/spirv-tools/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500163 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200164 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400165 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500166
Jamie Madill8be7a4c2019-09-19 12:48:31 -0400167 '{angle_root}/third_party/SwiftShader': {
Jamie Madill5e9d4ee2019-10-05 09:49:36 -0400168 'url': '{swiftshader_git}/SwiftShader@036463457e5f11a9257553fadb5e8c193bec6f7e',
Jamie Madill8be7a4c2019-09-19 12:48:31 -0400169 'condition': 'not build_with_chromium',
170 },
171
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000172 '{angle_root}/third_party/vulkan-headers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600173 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
174 },
175
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000176 '{angle_root}/third_party/vulkan-loader/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600177 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
178 },
179
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000180 '{angle_root}/third_party/vulkan-tools/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600181 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
182 },
183
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000184 '{angle_root}/third_party/vulkan-validation-layers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600185 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400186 },
Jamie Madill3cd438d2015-03-17 11:25:27 -0400187
Jamie Madill55959b02019-03-05 10:07:41 -0500188 '{angle_root}/third_party/yasm': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400189 'url': '{chromium_git}/chromium/src/third_party/yasm@cc10bc0f1d96a4bae0e775f2ac2b6ac5b08078c6',
Jamie Madill55959b02019-03-05 10:07:41 -0500190 'condition': 'not build_with_chromium',
191 },
192
193 '{angle_root}/third_party/yasm/source/patched-yasm': {
194 'url': '{chromium_git}/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
195 'condition': 'not build_with_chromium',
196 },
197
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000198 '{angle_root}/third_party/zlib': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400199 'url': '{chromium_git}/chromium/src/third_party/zlib@ddebad26cfadeb4ecdfe3da8beb396a85cf90c91',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400200 'condition': 'not build_with_chromium',
201 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400202
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000203 '{angle_root}/tools/clang': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400204 'url': '{chromium_git}/chromium/src/tools/clang.git@6bc727d9d80f2c3a97587676bb38c5472afe7e60',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400205 'condition': 'not build_with_chromium',
206 },
Michael Spang229fc832019-01-21 18:09:15 -0500207
Jamie Madill9f958342019-04-08 09:40:40 -0400208 '{angle_root}/tools/md_browser': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700209 'url': '{chromium_git}/chromium/src/tools/md_browser@0bfd826f8566a99923e64a782908faca72bc457c',
Jamie Madill9f958342019-04-08 09:40:40 -0400210 'condition': 'not build_with_chromium',
Michael Spang229fc832019-01-21 18:09:15 -0500211 },
Jamie Madilldf0ce012019-09-05 11:04:39 -0400212
213 '{angle_root}/tools/memory': {
214 'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee',
215 'condition': 'not build_with_chromium',
216 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000217}
218
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000219hooks = [
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400220 # Pull clang-format binaries using checked-in hashes.
221 {
222 'name': 'clang_format_win',
223 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400224 'condition': 'host_os == "win" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400225 'action': [ 'download_from_google_storage',
226 '--no_resume',
227 '--platform=win32',
228 '--no_auth',
229 '--bucket', 'chromium-clang-format',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000230 '-s', '{angle_root}/buildtools/win/clang-format.exe.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400231 ],
232 },
233 {
234 'name': 'clang_format_mac',
235 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400236 'condition': 'host_os == "mac" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400237 'action': [ 'download_from_google_storage',
238 '--no_resume',
239 '--platform=darwin',
240 '--no_auth',
241 '--bucket', 'chromium-clang-format',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000242 '-s', '{angle_root}/buildtools/mac/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400243 ],
244 },
245 {
246 'name': 'clang_format_linux',
247 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400248 'condition': 'host_os == "linux" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400249 'action': [ 'download_from_google_storage',
250 '--no_resume',
251 '--platform=linux*',
252 '--no_auth',
253 '--bucket', 'chromium-clang-format',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000254 '-s', '{angle_root}/buildtools/linux64/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400255 ],
256 },
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600257 {
258 'name': 'sysroot_x86',
259 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400260 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000261 'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600262 '--arch=x86'],
263 },
264 {
265 'name': 'sysroot_x64',
266 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400267 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000268 'action': ['python', '{angle_root}/build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600269 '--arch=x64'],
270 },
Jamie Madill027717f2018-04-13 15:51:24 -0400271 {
272 # Update the Windows toolchain if necessary. Must run before 'clang' below.
273 'name': 'win_toolchain',
274 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400275 'condition': 'checkout_win and not build_with_chromium',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000276 'action': ['python', '{angle_root}/build/vs_toolchain.py', 'update', '--force'],
Jamie Madill027717f2018-04-13 15:51:24 -0400277 },
Geoff Lang66ae5312019-04-01 16:35:53 -0400278 {
279 # Update the Mac toolchain if necessary.
280 'name': 'mac_toolchain',
281 'pattern': '.',
282 'condition': 'checkout_mac and not build_with_chromium',
283 'action': ['python', '{angle_root}/build/mac_toolchain.py'],
284 },
Jamie Madill027717f2018-04-13 15:51:24 -0400285
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000286 {
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400287 # Note: On Win, this should run after win_toolchain, as it may use it.
288 'name': 'clang',
289 'pattern': '.',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000290 'action': ['python', '{angle_root}/tools/clang/scripts/update.py'],
Edward Lemur8ae09b02018-06-01 14:18:28 -0400291 'condition': 'not build_with_chromium',
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400292 },
Jamie Madill940c48b2017-10-23 23:25:17 -0400293
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400294 {
295 # Update LASTCHANGE.
296 'name': 'lastchange',
297 'pattern': '.',
298 'condition': 'not build_with_chromium',
299 'action': ['python', '{angle_root}/build/util/lastchange.py',
300 '-o', '{angle_root}/build/util/LASTCHANGE'],
301 },
302
Jamie Madill940c48b2017-10-23 23:25:17 -0400303 # Pull rc binaries using checked-in hashes.
304 {
305 'name': 'rc_win',
306 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400307 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
Jamie Madill940c48b2017-10-23 23:25:17 -0400308 'action': [ 'download_from_google_storage',
309 '--no_resume',
310 '--no_auth',
311 '--bucket', 'chromium-browser-clang/rc',
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000312 '-s', '{angle_root}/build/toolchain/win/rc/win/rc.exe.sha1',
Jamie Madill940c48b2017-10-23 23:25:17 -0400313 ],
314 },
Michael Spang229fc832019-01-21 18:09:15 -0500315
316 {
317 'name': 'fuchsia_sdk',
318 'pattern': '.',
319 'condition': 'checkout_fuchsia and not build_with_chromium',
320 'action': [
321 'python',
322 '{angle_root}/build/fuchsia/update_sdk.py',
323 ],
324 },
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400325
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400326 # Download glslang validator binary for Linux.
327 {
328 'name': 'linux_glslang_validator',
329 'pattern': '.',
330 'condition': 'checkout_linux and not build_with_chromium',
331 'action': [ 'download_from_google_storage',
332 '--no_resume',
333 '--platform=linux*',
334 '--no_auth',
335 '--bucket', 'angle-glslang-validator',
336 '-s', '{angle_root}/tools/glslang/glslang_validator.sha1',
337 ],
338 },
339
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400340 # Download glslang validator binary for Windows.
341 {
342 'name': 'win_glslang_validator',
343 'pattern': '.',
344 'condition': 'checkout_win and not build_with_chromium',
345 'action': [ 'download_from_google_storage',
346 '--no_resume',
347 '--platform=win32*',
348 '--no_auth',
349 '--bucket', 'angle-glslang-validator',
350 '-s', '{angle_root}/tools/glslang/glslang_validator.exe.sha1',
351 ],
352 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000353]
Jamie Madill20789312016-10-28 14:05:26 -0400354
355recursedeps = [
356 # buildtools provides clang_format.
Yuly Novikov85d8ee82018-09-12 17:36:57 +0000357 '{angle_root}/buildtools',
Jamie Madill20789312016-10-28 14:05:26 -0400358]