blob: 7697d9e0da3d0cba434bc4d38840140f01896f9b [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 Madille7c8e802019-10-26 08:16:12 -040024 'chromium_revision': '5fe256ab5e5eb3d73d23ab52c69ba113145d921b',
Jamie Madill1948af32019-10-11 17:49:24 -040025
Courtney Goeltzenleuchterfebdcf52019-10-28 10:54:03 -060026 # Current revision of VK-GL-CTS (a.k.a dEQP).
27 'vk_gl_cts_revision': '54ec6f2b1390bf33ea10424dca610f8bcbfefa06',
Edward Lemur8ae09b02018-06-01 14:18:28 -040028
29 # Current revision of glslang, the Khronos SPIRV compiler.
angle-autoroll853e8542019-11-13 07:01:28 +000030 'glslang_revision': '37dcb894574e94a876c0165c4df96eeba68e6a5a',
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
Jamie Madille7c8e802019-10-26 08:16:12 -040036 # Current revision of jsoncpp.
37 # Note: this dep cannot be auto-rolled b/c of nesting.
38 'jsoncpp_revision': '645250b6690785be60ab6780ce4b58698d884d11',
39
40 # Current revision of patched-yasm.
41 # Note: this dep cannot be auto-rolled b/c of nesting.
42 'patched_yasm_revision': '720b70524a4424b15fc57e82263568c8ba0496ad',
43
Le Quyena5a04ac2019-10-29 22:57:55 +080044 # Current revision of spirv-cross, the Khronos SPIRV cross compiler.
45 'spirv_cross_revision': 'd253f41e17e27285756d031d8ba43bf370264e1f',
46
Edward Lemur8ae09b02018-06-01 14:18:28 -040047 # Current revision fo the SPIRV-Headers Vulkan support library.
angle-autoroll4bad5352019-10-25 11:54:24 +000048 'spirv_headers_revision': 'af64a9e826bf5bb5fcd2434dd71be1e41e922563',
Edward Lemur8ae09b02018-06-01 14:18:28 -040049
50 # Current revision of SPIRV-Tools for Vulkan.
angle-autorolld4b31202019-11-13 07:01:24 +000051 'spirv_tools_revision': 'ab3cdcaef56e9311f299eebfd044f9646100c9dc',
Edward Lemur8ae09b02018-06-01 14:18:28 -040052
Tobin Ehlisb971f492018-05-24 10:56:17 -060053 # Current revision of Khronos Vulkan-Headers.
angle-autorollf5333552019-11-13 20:04:24 +000054 'vulkan_headers_revision': 'd42d0747ee1b7a6726fb8948444b4993f9dcd2e5',
Tobin Ehlisb971f492018-05-24 10:56:17 -060055
56 # Current revision of Khronos Vulkan-Loader.
Tobin Ehlis88a99e42019-10-23 12:07:41 -060057 'vulkan_loader_revision': '96bd3651364f3145d7b8d495497f40f376e37a81',
Tobin Ehlisb971f492018-05-24 10:56:17 -060058
59 # Current revision of Khronos Vulkan-Tools.
Tobin Ehlisf22f16d2019-07-18 15:10:49 -060060 'vulkan_tools_revision': '40cd2166a44647a4283517e31af4589410c654eb',
Tobin Ehlisb971f492018-05-24 10:56:17 -060061
62 # Current revision of Khronos Vulkan-ValidationLayers.
Jamie Madilld4affcd2019-10-22 12:32:04 -040063 'vulkan_validation_revision': 'f8ea20adee82d262134fc3fa1a417a6e86fdff23',
Jamie Madill2fdd3da2015-07-20 10:14:54 -040064}
65
alokp@chromium.org29d56fb2010-04-06 15:42:22 +000066deps = {
alokp@chromium.org416fcd32012-04-11 16:23:44 +000067
Jamie Madill8ba50492019-10-10 17:46:54 -040068 'build': {
Jamie Madille7c8e802019-10-26 08:16:12 -040069 'url': '{chromium_git}/chromium/src/build.git@258e22bc612da7425c3a64d733041683a9d123f1',
Edward Lemur8ae09b02018-06-01 14:18:28 -040070 'condition': 'not build_with_chromium',
71 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040072
Jamie Madill8ba50492019-10-10 17:46:54 -040073 'buildtools': {
Jamie Madill9c2df982019-10-09 16:45:13 -040074 'url': '{chromium_git}/chromium/src/buildtools.git@cf454b247c611167388742c7a31ef138a6031172',
Edward Lemur8ae09b02018-06-01 14:18:28 -040075 'condition': 'not build_with_chromium',
76 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -040077
Jamie Madill8ba50492019-10-10 17:46:54 -040078 'testing': {
Jamie Madille7c8e802019-10-26 08:16:12 -040079 'url': '{chromium_git}/chromium/src/testing@85152663b9e65c5372e8eb080d936e1b6fbd3b6b',
Edward Lemur8ae09b02018-06-01 14:18:28 -040080 'condition': 'not build_with_chromium',
81 },
alokp@chromium.org5cd9c602012-05-16 23:37:50 +000082
Courtney Goeltzenleuchterfebdcf52019-10-28 10:54:03 -060083 # Cherry is a dEQP/VK-GL-CTS management GUI written in Go. We use it for viewing test results.
Jamie Madill8ba50492019-10-10 17:46:54 -040084 'third_party/cherry': {
Edward Lemur8ae09b02018-06-01 14:18:28 -040085 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
86 'condition': 'not build_with_chromium',
87 },
Jamie Madill9e76f562015-10-02 08:57:14 -040088
Courtney Goeltzenleuchterfebdcf52019-10-28 10:54:03 -060089 'third_party/VK-GL-CTS/src': {
90 'url': '{chromium_git}/external/github.com/KhronosGroup/VK-GL-CTS@{vk_gl_cts_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -040091 },
Jamie Madill37ee8a62016-12-13 15:18:58 -050092
Jamie Madill8ba50492019-10-10 17:46:54 -040093 'third_party/fuchsia-sdk': {
Jamie Madill130fdbc2019-10-10 19:13:07 -040094 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44',
Jamie Madill9f958342019-04-08 09:40:40 -040095 'condition': 'checkout_fuchsia and not build_with_chromium',
96 },
97
Jamie Madill67a017f2019-10-10 15:27:27 -040098 # Closed-source OpenGL ES 1.1 Conformance tests.
Jamie Madill8ba50492019-10-10 17:46:54 -040099 'third_party/gles1_conform': {
Jamie Madill67a017f2019-10-10 15:27:27 -0400100 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
101 'condition': 'checkout_src_internal',
102 },
103
Jamie Madill55959b02019-03-05 10:07:41 -0500104 # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
Jamie Madill8ba50492019-10-10 17:46:54 -0400105 'third_party/glmark2/src': {
Jamie Madill2971fd32019-08-12 16:53:21 -0400106 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e',
Jamie Madill55959b02019-03-05 10:07:41 -0500107 },
108
Jamie Madill8ba50492019-10-10 17:46:54 -0400109 'third_party/glslang/src': {
Tobin Ehlis317a9eb2018-11-29 12:51:46 -0700110 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500111 'condition': 'not build_with_chromium',
Jamie Madill55959b02019-03-05 10:07:41 -0500112 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500113
Jamie Madill8ba50492019-10-10 17:46:54 -0400114 'third_party/googletest': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400115 'url': '{chromium_git}/chromium/src/third_party/googletest@60616473f7d8414aeb7575b487beecc7369fd52f',
Jamie Madillcf9b2852019-02-13 09:15:26 -0500116 'condition': 'not build_with_chromium',
117 },
118
Jamie Madill55959b02019-03-05 10:07:41 -0500119 # libjpeg_turbo is used by glmark2.
Jamie Madill8ba50492019-10-10 17:46:54 -0400120 'third_party/libjpeg_turbo': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400121 'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@bc13578529255ec75005ffc98aae151666122892',
Jamie Madill55959b02019-03-05 10:07:41 -0500122 'condition': 'not build_with_chromium',
123 },
124
Jamie Madill8ba50492019-10-10 17:46:54 -0400125 'third_party/libpng/src': {
Edward Lemur8ae09b02018-06-01 14:18:28 -0400126 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
127 'condition': 'not build_with_chromium',
128 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500129
Jamie Madill8ba50492019-10-10 17:46:54 -0400130 'third_party/jsoncpp': {
Jamie Madille7c8e802019-10-26 08:16:12 -0400131 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@1cfec065ed4cd9a01fa8e351baa3e714a5868522',
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500132 'condition': 'not build_with_chromium',
133 },
Tobin Ehlis5fdc38c2018-08-28 09:20:57 -0600134
Jamie Madill8ba50492019-10-10 17:46:54 -0400135 'third_party/Python-Markdown': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700136 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@36657c103ce5964733bbbb29377085e9cc1a9472',
Jamie Madill9f958342019-04-08 09:40:40 -0400137 'condition': 'not build_with_chromium',
138 },
139
Jamie Madill8ba50492019-10-10 17:46:54 -0400140 'third_party/qemu-linux-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500141 'packages': [
142 {
143 'package': 'fuchsia/qemu/linux-amd64',
144 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
145 },
146 ],
147 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
148 'dep_type': 'cipd',
149 },
150
Jamie Madill8ba50492019-10-10 17:46:54 -0400151 'third_party/qemu-mac-x64': {
Michael Spang229fc832019-01-21 18:09:15 -0500152 'packages': [
153 {
154 'package': 'fuchsia/qemu/mac-amd64',
155 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
156 },
157 ],
158 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
159 'dep_type': 'cipd',
160 },
161
Jamie Madill8ba50492019-10-10 17:46:54 -0400162 'third_party/rapidjson/src': {
Jamie Madill46d32e02019-02-25 17:13:16 -0500163 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
164 },
165
Le Quyena5a04ac2019-10-29 22:57:55 +0800166 'third_party/spirv-cross/src': {
167 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Cross@{spirv_cross_revision}',
168 'condition': 'not build_with_chromium',
169 },
170
Jamie Madill8ba50492019-10-10 17:46:54 -0400171 'third_party/spirv-headers/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500172 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200173 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400174 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500175
Jamie Madill8ba50492019-10-10 17:46:54 -0400176 'third_party/spirv-tools/src': {
Jamie Madill0cb3b0f2019-01-28 09:55:20 -0500177 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
Corentin Walleza883dd02018-08-03 18:11:46 +0200178 'condition': 'not build_with_chromium',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400179 },
Jamie Madill37ee8a62016-12-13 15:18:58 -0500180
Jamie Madill8ba50492019-10-10 17:46:54 -0400181 'third_party/SwiftShader': {
angle-autoroll9ec5c782019-11-13 07:01:31 +0000182 'url': '{swiftshader_git}/SwiftShader@88632cac30e167d56deef8a84fb97491bc390636',
Jamie Madill8be7a4c2019-09-19 12:48:31 -0400183 'condition': 'not build_with_chromium',
184 },
185
Jamie Madill8ba50492019-10-10 17:46:54 -0400186 'third_party/vulkan-headers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600187 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
188 },
189
Jamie Madill8ba50492019-10-10 17:46:54 -0400190 'third_party/vulkan-loader/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600191 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
192 },
193
Jamie Madill8ba50492019-10-10 17:46:54 -0400194 'third_party/vulkan-tools/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600195 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
196 },
197
Jamie Madill8ba50492019-10-10 17:46:54 -0400198 'third_party/vulkan-validation-layers/src': {
Tobin Ehlisb971f492018-05-24 10:56:17 -0600199 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400200 },
Jamie Madill3cd438d2015-03-17 11:25:27 -0400201
Jamie Madill8ba50492019-10-10 17:46:54 -0400202 'third_party/yasm': {
Jamie Madille7c8e802019-10-26 08:16:12 -0400203 'url': '{chromium_git}/chromium/src/third_party/yasm@02a8d2167f476660411ea7e1ee6fbd21dda44e96',
Jamie Madill55959b02019-03-05 10:07:41 -0500204 'condition': 'not build_with_chromium',
205 },
206
Jamie Madill8ba50492019-10-10 17:46:54 -0400207 'third_party/zlib': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400208 'url': '{chromium_git}/chromium/src/third_party/zlib@403ca5ad3a324530113a89a20fcabcea92242721',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400209 'condition': 'not build_with_chromium',
210 },
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400211
Jamie Madill8ba50492019-10-10 17:46:54 -0400212 'tools/clang': {
Jamie Madill7d51cc92019-10-25 08:06:35 -0400213 'url': '{chromium_git}/chromium/src/tools/clang.git@662cbb8d60f813b110f637f38adf60d9b2c57418',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400214 'condition': 'not build_with_chromium',
215 },
Michael Spang229fc832019-01-21 18:09:15 -0500216
Jamie Madill8ba50492019-10-10 17:46:54 -0400217 'tools/md_browser': {
Robert Iannuccida8dad12019-08-08 19:40:48 -0700218 'url': '{chromium_git}/chromium/src/tools/md_browser@0bfd826f8566a99923e64a782908faca72bc457c',
Jamie Madill9f958342019-04-08 09:40:40 -0400219 'condition': 'not build_with_chromium',
Michael Spang229fc832019-01-21 18:09:15 -0500220 },
Jamie Madilldf0ce012019-09-05 11:04:39 -0400221
Jamie Madill8ba50492019-10-10 17:46:54 -0400222 'tools/memory': {
Jamie Madilldf0ce012019-09-05 11:04:39 -0400223 'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee',
224 'condition': 'not build_with_chromium',
225 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000226}
227
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000228hooks = [
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400229 # Pull clang-format binaries using checked-in hashes.
230 {
231 'name': 'clang_format_win',
232 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400233 'condition': 'host_os == "win" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400234 'action': [ 'download_from_google_storage',
235 '--no_resume',
236 '--platform=win32',
237 '--no_auth',
238 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400239 '-s', 'buildtools/win/clang-format.exe.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400240 ],
241 },
242 {
243 'name': 'clang_format_mac',
244 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400245 'condition': 'host_os == "mac" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400246 'action': [ 'download_from_google_storage',
247 '--no_resume',
248 '--platform=darwin',
249 '--no_auth',
250 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400251 '-s', 'buildtools/mac/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400252 ],
253 },
254 {
255 'name': 'clang_format_linux',
256 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400257 'condition': 'host_os == "linux" and not build_with_chromium',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400258 'action': [ 'download_from_google_storage',
259 '--no_resume',
260 '--platform=linux*',
261 '--no_auth',
262 '--bucket', 'chromium-clang-format',
Jamie Madill8ba50492019-10-10 17:46:54 -0400263 '-s', 'buildtools/linux64/clang-format.sha1',
Jamie Madill2fdd3da2015-07-20 10:14:54 -0400264 ],
265 },
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600266 {
267 'name': 'sysroot_x86',
268 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400269 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400270 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600271 '--arch=x86'],
272 },
273 {
274 'name': 'sysroot_x64',
275 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400276 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
Jamie Madill8ba50492019-10-10 17:46:54 -0400277 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
Tobin Ehlis9d4277b2018-05-21 16:22:22 -0600278 '--arch=x64'],
279 },
Jamie Madill027717f2018-04-13 15:51:24 -0400280 {
281 # Update the Windows toolchain if necessary. Must run before 'clang' below.
282 'name': 'win_toolchain',
283 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400284 'condition': 'checkout_win and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400285 'action': ['python', 'build/vs_toolchain.py', 'update', '--force'],
Jamie Madill027717f2018-04-13 15:51:24 -0400286 },
Geoff Lang66ae5312019-04-01 16:35:53 -0400287 {
288 # Update the Mac toolchain if necessary.
289 'name': 'mac_toolchain',
290 'pattern': '.',
291 'condition': 'checkout_mac and not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400292 'action': ['python', 'build/mac_toolchain.py'],
Geoff Lang66ae5312019-04-01 16:35:53 -0400293 },
Jamie Madill027717f2018-04-13 15:51:24 -0400294
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000295 {
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400296 # Note: On Win, this should run after win_toolchain, as it may use it.
297 'name': 'clang',
298 'pattern': '.',
Jamie Madill8ba50492019-10-10 17:46:54 -0400299 'action': ['python', 'tools/clang/scripts/update.py'],
Edward Lemur8ae09b02018-06-01 14:18:28 -0400300 'condition': 'not build_with_chromium',
Frank Henigmand0ef13a2017-08-28 22:53:24 -0400301 },
Jamie Madill940c48b2017-10-23 23:25:17 -0400302
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400303 {
304 # Update LASTCHANGE.
305 'name': 'lastchange',
306 'pattern': '.',
307 'condition': 'not build_with_chromium',
Jamie Madill8ba50492019-10-10 17:46:54 -0400308 'action': ['python', 'build/util/lastchange.py',
309 '-o', 'build/util/LASTCHANGE'],
Shahbaz Youssefi957e9b82018-10-05 11:00:50 -0400310 },
311
Jamie Madill940c48b2017-10-23 23:25:17 -0400312 # Pull rc binaries using checked-in hashes.
313 {
314 'name': 'rc_win',
315 'pattern': '.',
Edward Lemur8ae09b02018-06-01 14:18:28 -0400316 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
Jamie Madill940c48b2017-10-23 23:25:17 -0400317 'action': [ 'download_from_google_storage',
318 '--no_resume',
319 '--no_auth',
320 '--bucket', 'chromium-browser-clang/rc',
Jamie Madill8ba50492019-10-10 17:46:54 -0400321 '-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
Jamie Madill940c48b2017-10-23 23:25:17 -0400322 ],
323 },
Michael Spang229fc832019-01-21 18:09:15 -0500324
325 {
326 'name': 'fuchsia_sdk',
327 'pattern': '.',
328 'condition': 'checkout_fuchsia and not build_with_chromium',
329 'action': [
330 'python',
Jamie Madill8ba50492019-10-10 17:46:54 -0400331 'build/fuchsia/update_sdk.py',
Michael Spang229fc832019-01-21 18:09:15 -0500332 ],
333 },
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400334
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400335 # Download glslang validator binary for Linux.
336 {
337 'name': 'linux_glslang_validator',
338 'pattern': '.',
339 'condition': 'checkout_linux and not build_with_chromium',
340 'action': [ 'download_from_google_storage',
341 '--no_resume',
342 '--platform=linux*',
343 '--no_auth',
344 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400345 '-s', 'tools/glslang/glslang_validator.sha1',
Shahbaz Youssefi82418c82019-04-05 15:56:03 -0400346 ],
347 },
348
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400349 # Download glslang validator binary for Windows.
350 {
351 'name': 'win_glslang_validator',
352 'pattern': '.',
353 'condition': 'checkout_win and not build_with_chromium',
354 'action': [ 'download_from_google_storage',
355 '--no_resume',
356 '--platform=win32*',
357 '--no_auth',
358 '--bucket', 'angle-glslang-validator',
Jamie Madill8ba50492019-10-10 17:46:54 -0400359 '-s', 'tools/glslang/glslang_validator.exe.sha1',
Jamie Madilld5ff4fa2019-04-08 09:25:23 -0400360 ],
361 },
alokp@chromium.org29d56fb2010-04-06 15:42:22 +0000362]
Jamie Madill20789312016-10-28 14:05:26 -0400363
364recursedeps = [
365 # buildtools provides clang_format.
Jamie Madill8ba50492019-10-10 17:46:54 -0400366 'buildtools',
Jamie Madill07035682019-10-25 09:00:41 -0400367 'third_party/googletest',
Jamie Madille7c8e802019-10-26 08:16:12 -0400368 'third_party/jsoncpp',
369 'third_party/yasm',
Jamie Madill20789312016-10-28 14:05:26 -0400370]