blob: 63100a69c208f500849118806a5b0782ae4ba237 [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 Madill130fdbc2019-10-10 19:13:07 -040024 'chromium_revision': '9325340209749c1ff4eb198a8f7176c0a16dea6d',
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-autoroll66aae7e2019-10-22 07:01:09 +000030 'glslang_revision': '5e634c8999e631aacb7deacd968b40ff25fc15de',
Edward Lemur8ae09b02018-06-01 14:18:28 -040031
32 # Current revision fo the SPIRV-Headers Vulkan support library.
angle-autorollceac3322019-09-30 07:01:54 +000033 'spirv_headers_revision': '842ec90674627ed2ffef609e3cd79d1562eded01',
Edward Lemur8ae09b02018-06-01 14:18:28 -040034
35 # Current revision of SPIRV-Tools for Vulkan.
angle-autoroll67486ec2019-10-11 07:01:21 +000036 'spirv_tools_revision': 'feb154921397dc8c43c130a6b5c123efdb432a9b',
Edward Lemur8ae09b02018-06-01 14:18:28 -040037
Tobin Ehlisb971f492018-05-24 10:56:17 -060038 # Current revision of Khronos Vulkan-Headers.
Tobin Ehlis6dee1762019-10-17 15:26:03 -060039 'vulkan_headers_revision': 'd287523f48dba1b669866c5d6625b29931948e39',
Tobin Ehlisb971f492018-05-24 10:56:17 -060040
41 # Current revision of Khronos Vulkan-Loader.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060042 'vulkan_loader_revision': 'b5a0995324fa9fb2a6152197b442400e7d7be5b6',
Tobin Ehlisb971f492018-05-24 10:56:17 -060043
44 # Current revision of Khronos Vulkan-Tools.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060045 'vulkan_tools_revision': '40cd2166a44647a4283517e31af4589410c654eb',
Tobin Ehlisb971f492018-05-24 10:56:17 -060046
47 # Current revision of Khronos Vulkan-ValidationLayers.
Jamie Madilld4affcd2019-10-22 12:32:04 -040048 'vulkan_validation_revision': 'f8ea20adee82d262134fc3fa1a417a6e86fdff23',
Jamie Madill2fdd3da2015-07-20 10:14:54 -040049}
50
alokp@chromium.org29d56fb2010-04-06 15:42:22 +000051deps = {
alokp@chromium.org416fcd32012-04-11 16:23:44 +000052
Jamie Madill8ba50492019-10-10 17:46:54 -040053 'build': {
Jamie Madill130fdbc2019-10-10 19:13:07 -040054 'url': '{chromium_git}/chromium/src/build.git@592281c03c6bea25793f116bb442ec2dae991429',
Edward Lemur8ae09b02018-06-01 14:18:28 -040055 'condition': 'not build_with_chromium',
56 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040057
Jamie Madill8ba50492019-10-10 17:46:54 -040058 'buildtools': {
Jamie Madill9c2df982019-10-09 16:45:13 -040059 'url': '{chromium_git}/chromium/src/buildtools.git@cf454b247c611167388742c7a31ef138a6031172',
Edward Lemur8ae09b02018-06-01 14:18:28 -040060 'condition': 'not build_with_chromium',
61 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040062
Jamie Madill8ba50492019-10-10 17:46:54 -040063 'testing': {
Jamie Madill130fdbc2019-10-10 19:13:07 -040064 'url': '{chromium_git}/chromium/src/testing@6752fa027a3f042ec12afc5cdae0fb093376aaf0',
Edward Lemur8ae09b02018-06-01 14:18:28 -040065 'condition': 'not build_with_chromium',
66 },
alokp@chromium.org5cd9c602012-05-16 23:37:50 +000067
Jamie Madill9e76f562015-10-02 08:57:14 -040068 # Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
Jamie Madill8ba50492019-10-10 17:46:54 -040069 'third_party/cherry': {
Edward Lemur8ae09b02018-06-01 14:18:28 -040070 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
71 'condition': 'not build_with_chromium',
72 },
Jamie Madill9e76f562015-10-02 08:57:14 -040073
Jamie Madill8ba50492019-10-10 17:46:54 -040074 'third_party/deqp/src': {
Jamie Madill915d4062019-01-28 18:15:43 -050075 'url': '{chromium_git}/external/deqp@{deqp_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -040076 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050077
Jamie Madill8ba50492019-10-10 17:46:54 -040078 'third_party/fuchsia-sdk': {
Jamie Madill130fdbc2019-10-10 19:13:07 -040079 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44',
Jamie Madill9f958342019-04-08 09:40:40 -040080 'condition': 'checkout_fuchsia and not build_with_chromium',
81 },
82
Jamie Madill67a017f2019-10-10 15:27:27 -040083 # Closed-source OpenGL ES 1.1 Conformance tests.
Jamie Madill8ba50492019-10-10 17:46:54 -040084 'third_party/gles1_conform': {
Jamie Madill67a017f2019-10-10 15:27:27 -040085 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
86 'condition': 'checkout_src_internal',
87 },
88
Jamie Madill55959b02019-03-05 10:07:41 -050089 # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
Jamie Madill8ba50492019-10-10 17:46:54 -040090 'third_party/glmark2/src': {
Jamie Madill2971fd32019-08-12 16:53:21 -040091 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e',
Jamie Madill55959b02019-03-05 10:07:41 -050092 },
93
Jamie Madill8ba50492019-10-10 17:46:54 -040094 'third_party/glslang/src': {
Tobin Ehlis317a9eb2018-11-29 12:51:46 -070095 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -050096 'condition': 'not build_with_chromium',
Jamie Madill55959b02019-03-05 10:07:41 -050097 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050098
Jamie Madill8ba50492019-10-10 17:46:54 -040099 'third_party/googletest': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700100 'url': '{chromium_git}/chromium/src/third_party/googletest@c721b68ddecc18bbc6b763b2fe8ab802c22f228a',
Jamie Madillcf9b2852019-02-13 09:15:26 -0500101 'condition': 'not build_with_chromium',
102 },
103
Jamie Madill8ba50492019-10-10 17:46:54 -0400104 'third_party/googletest/src': {
Jamie Madill130fdbc2019-10-10 19:13:07 -0400105 'url': '{chromium_git}/external/github.com/google/googletest.git@f2fb48c3b3d79a75a88a99fba6576b25d42ec528',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400106 'condition': 'not build_with_chromium',
107 },
Frank Henigman6b076a02017-10-11 13:28:22 -0400108
Jamie Madill55959b02019-03-05 10:07:41 -0500109 # libjpeg_turbo is used by glmark2.
Jamie Madill8ba50492019-10-10 17:46:54 -0400110 'third_party/libjpeg_turbo': {
Jamie Madill130fdbc2019-10-10 19:13:07 -0400111 'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@9d3bf3e9680156c48041c8b90fece504e3539a61',
Jamie Madill55959b02019-03-05 10:07:41 -0500112 'condition': 'not build_with_chromium',
113 },
114
Jamie Madill8ba50492019-10-10 17:46:54 -0400115 'third_party/libpng/src': {
Edward Lemur8ae09b02018-06-01 14:18:28 -0400116 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
117 'condition': 'not build_with_chromium',
118 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500119
Jamie Madill8ba50492019-10-10 17:46:54 -0400120 'third_party/jsoncpp': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700121 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@48246a099549ab325c01f69f24a34fc72e5c42e4',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500122 'condition': 'not build_with_chromium',
123 },
Jamie Madill7ada46c2018-09-06 10:58:26 -0400124
Jamie Madill8ba50492019-10-10 17:46:54 -0400125 'third_party/jsoncpp/source': {
Jamie Madill1948af32019-10-11 17:49:24 -0400126 'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp.git@645250b6690785be60ab6780ce4b58698d884d11',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500127 'condition': 'not build_with_chromium',
128 },
Tobin Ehlis5fdc38c2018-08-28 09:20:57 -0600129
Jamie Madill8ba50492019-10-10 17:46:54 -0400130 'third_party/Python-Markdown': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700131 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@36657c103ce5964733bbbb29377085e9cc1a9472',
Jamie Madill9f958342019-04-08 09:40:40 -0400132 'condition': 'not build_with_chromium',
133 },
134
Jamie Madill8ba50492019-10-10 17:46:54 -0400135 'third_party/qemu-linux-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500136 'packages': [
137 {
138 'package': 'fuchsia/qemu/linux-amd64',
139 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
140 },
141 ],
142 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
143 'dep_type': 'cipd',
144 },
145
Jamie Madill8ba50492019-10-10 17:46:54 -0400146 'third_party/qemu-mac-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500147 'packages': [
148 {
149 'package': 'fuchsia/qemu/mac-amd64',
150 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
151 },
152 ],
153 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
154 'dep_type': 'cipd',
155 },
156
Jamie Madill8ba50492019-10-10 17:46:54 -0400157 'third_party/rapidjson/src': {
Jamie Madill46d32e02019-02-25 17:13:16 -0500158 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
159 },
160
Jamie Madill8ba50492019-10-10 17:46:54 -0400161 'third_party/spirv-headers/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500162 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200163 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400164 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500165
Jamie Madill8ba50492019-10-10 17:46:54 -0400166 'third_party/spirv-tools/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500167 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200168 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400169 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500170
Jamie Madill8ba50492019-10-10 17:46:54 -0400171 'third_party/SwiftShader': {
angle-autorollc6db4a02019-10-18 07:01:19 +0000172 'url': '{swiftshader_git}/SwiftShader@a68a80a4dbf9dc7fab42a2734c854a41d23136cc',
Jamie Madill8be7a4c2019-09-19 12:48:31 -0400173 'condition': 'not build_with_chromium',
174 },
175
Jamie Madill8ba50492019-10-10 17:46:54 -0400176 'third_party/vulkan-headers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600177 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
178 },
179
Jamie Madill8ba50492019-10-10 17:46:54 -0400180 'third_party/vulkan-loader/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600181 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
182 },
183
Jamie Madill8ba50492019-10-10 17:46:54 -0400184 'third_party/vulkan-tools/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600185 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
186 },
187
Jamie Madill8ba50492019-10-10 17:46:54 -0400188 'third_party/vulkan-validation-layers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600189 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400190 },
Jamie Madill3cd438d2015-03-17 11:25:27 -0400191
Jamie Madill8ba50492019-10-10 17:46:54 -0400192 'third_party/yasm': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400193 'url': '{chromium_git}/chromium/src/third_party/yasm@cc10bc0f1d96a4bae0e775f2ac2b6ac5b08078c6',
Jamie Madill55959b02019-03-05 10:07:41 -0500194 'condition': 'not build_with_chromium',
195 },
196
Jamie Madill8ba50492019-10-10 17:46:54 -0400197 'third_party/yasm/source/patched-yasm': {
Jamie Madill55959b02019-03-05 10:07:41 -0500198 'url': '{chromium_git}/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
199 'condition': 'not build_with_chromium',
200 },
201
Jamie Madill8ba50492019-10-10 17:46:54 -0400202 'third_party/zlib': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400203 'url': '{chromium_git}/chromium/src/third_party/zlib@ddebad26cfadeb4ecdfe3da8beb396a85cf90c91',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400204 'condition': 'not build_with_chromium',
205 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400206
Jamie Madill8ba50492019-10-10 17:46:54 -0400207 'tools/clang': {
Jamie Madill9c2df982019-10-09 16:45:13 -0400208 'url': '{chromium_git}/chromium/src/tools/clang.git@6bc727d9d80f2c3a97587676bb38c5472afe7e60',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400209 'condition': 'not build_with_chromium',
210 },
Michael Spang229fc832019-01-21 18:09:15 -0500211
Jamie Madill8ba50492019-10-10 17:46:54 -0400212 'tools/md_browser': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700213 'url': '{chromium_git}/chromium/src/tools/md_browser@0bfd826f8566a99923e64a782908faca72bc457c',
Jamie Madill9f958342019-04-08 09:40:40 -0400214 'condition': 'not build_with_chromium',
Michael Spang229fc832019-01-21 18:09:15 -0500215 },
Jamie Madilldf0ce012019-09-05 11:04:39 -0400216
Jamie Madill8ba50492019-10-10 17:46:54 -0400217 'tools/memory': {
Jamie Madilldf0ce012019-09-05 11:04:39 -0400218 'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee',
219 'condition': 'not build_with_chromium',
220 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000221}
222
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000223hooks = [
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400224 # Pull clang-format binaries using checked-in hashes.
225 {
226 'name': 'clang_format_win',
227 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400228 'condition': 'host_os == "win" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400229 'action': [ 'download_from_google_storage',
230 '--no_resume',
231 '--platform=win32',
232 '--no_auth',
233 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400234 '-s', 'buildtools/win/clang-format.exe.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400235 ],
236 },
237 {
238 'name': 'clang_format_mac',
239 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400240 'condition': 'host_os == "mac" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400241 'action': [ 'download_from_google_storage',
242 '--no_resume',
243 '--platform=darwin',
244 '--no_auth',
245 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400246 '-s', 'buildtools/mac/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400247 ],
248 },
249 {
250 'name': 'clang_format_linux',
251 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400252 'condition': 'host_os == "linux" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400253 'action': [ 'download_from_google_storage',
254 '--no_resume',
255 '--platform=linux*',
256 '--no_auth',
257 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400258 '-s', 'buildtools/linux64/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400259 ],
260 },
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600261 {
262 'name': 'sysroot_x86',
263 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400264 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400265 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600266 '--arch=x86'],
267 },
268 {
269 'name': 'sysroot_x64',
270 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400271 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400272 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600273 '--arch=x64'],
274 },
Jamie Madill027717f2018-04-13 15:51:24 -0400275 {
276 # Update the Windows toolchain if necessary. Must run before 'clang' below.
277 'name': 'win_toolchain',
278 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400279 'condition': 'checkout_win and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400280 'action': ['python', 'build/vs_toolchain.py', 'update', '--force'],
Jamie Madill027717f2018-04-13 15:51:24 -0400281 },
Geoff Lang66ae5312019-04-01 16:35:53 -0400282 {
283 # Update the Mac toolchain if necessary.
284 'name': 'mac_toolchain',
285 'pattern': '.',
286 'condition': 'checkout_mac and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400287 'action': ['python', 'build/mac_toolchain.py'],
Geoff Lang66ae5312019-04-01 16:35:53 -0400288 },
Jamie Madill027717f2018-04-13 15:51:24 -0400289
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000290 {
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400291 # Note: On Win, this should run after win_toolchain, as it may use it.
292 'name': 'clang',
293 'pattern': '.',
Jamie Madill8ba50492019-10-10 17:46:54 -0400294 'action': ['python', 'tools/clang/scripts/update.py'],
Edward Lemur8ae09b02018-06-01 14:18:28 -0400295 'condition': 'not build_with_chromium',
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400296 },
Jamie Madill940c48b2017-10-23 23:25:17 -0400297
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400298 {
299 # Update LASTCHANGE.
300 'name': 'lastchange',
301 'pattern': '.',
302 'condition': 'not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400303 'action': ['python', 'build/util/lastchange.py',
304 '-o', 'build/util/LASTCHANGE'],
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400305 },
306
Jamie Madill940c48b2017-10-23 23:25:17 -0400307 # Pull rc binaries using checked-in hashes.
308 {
309 'name': 'rc_win',
310 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400311 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
Jamie Madill940c48b2017-10-23 23:25:17 -0400312 'action': [ 'download_from_google_storage',
313 '--no_resume',
314 '--no_auth',
315 '--bucket', 'chromium-browser-clang/rc',
Jamie Madill8ba50492019-10-10 17:46:54 -0400316 '-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
Jamie Madill940c48b2017-10-23 23:25:17 -0400317 ],
318 },
Michael Spang229fc832019-01-21 18:09:15 -0500319
320 {
321 'name': 'fuchsia_sdk',
322 'pattern': '.',
323 'condition': 'checkout_fuchsia and not build_with_chromium',
324 'action': [
325 'python',
Jamie Madill8ba50492019-10-10 17:46:54 -0400326 'build/fuchsia/update_sdk.py',
Michael Spang229fc832019-01-21 18:09:15 -0500327 ],
328 },
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400329
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400330 # Download glslang validator binary for Linux.
331 {
332 'name': 'linux_glslang_validator',
333 'pattern': '.',
334 'condition': 'checkout_linux and not build_with_chromium',
335 'action': [ 'download_from_google_storage',
336 '--no_resume',
337 '--platform=linux*',
338 '--no_auth',
339 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400340 '-s', 'tools/glslang/glslang_validator.sha1',
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400341 ],
342 },
343
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400344 # Download glslang validator binary for Windows.
345 {
346 'name': 'win_glslang_validator',
347 'pattern': '.',
348 'condition': 'checkout_win and not build_with_chromium',
349 'action': [ 'download_from_google_storage',
350 '--no_resume',
351 '--platform=win32*',
352 '--no_auth',
353 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400354 '-s', 'tools/glslang/glslang_validator.exe.sha1',
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400355 ],
356 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000357]
Jamie Madill20789312016-10-28 14:05:26 -0400358
359recursedeps = [
360 # buildtools provides clang_format.
Jamie Madill8ba50492019-10-10 17:46:54 -0400361 'buildtools',
Jamie Madill20789312016-10-28 14:05:26 -0400362]