Jamie Madill | 4237e53 | 2019-06-28 11:14:31 -0400 | [diff] [blame] | 1 | # 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 Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 5 | # Avoids the need for a custom root variable. |
| 6 | use_relative_paths = True |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 7 | |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 8 | gclient_gn_args_file = 'build/config/gclient_args.gni' |
| 9 | |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 10 | vars = { |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 11 | 'android_git': 'https://android.googlesource.com', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 12 | 'chromium_git': 'https://chromium.googlesource.com', |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 13 | 'chrome_internal_git': 'https://chrome-internal.googlesource.com', |
Jamie Madill | 8be7a4c | 2019-09-19 12:48:31 -0400 | [diff] [blame] | 14 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 15 | |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 16 | # This variable is overrided in Chromium's DEPS file. |
| 17 | 'build_with_chromium': False, |
| 18 | |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 19 | # Only check out public sources by default. This can be overridden with custom_vars. |
Cody Northrop | 84f45f1 | 2019-12-18 14:34:29 -0700 | [diff] [blame] | 20 | 'checkout_angle_internal': False, |
Jamie Madill | 4237e53 | 2019-06-28 11:14:31 -0400 | [diff] [blame] | 21 | |
Jamie Madill | 1948af3 | 2019-10-11 17:49:24 -0400 | [diff] [blame] | 22 | # Version of Chromium our Chromium-based DEPS are mirrored from. |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 23 | 'chromium_revision': 'a3984b7ec4aeffd722e85675646286022191fdcb', |
Yuly Novikov | 6a652f1 | 2020-08-12 21:12:47 -0400 | [diff] [blame] | 24 | # We never want to checkout chromium, |
| 25 | # but need a dummy DEPS entry for the autoroller |
| 26 | 'dummy_checkout_chromium': False, |
Jamie Madill | 1948af3 | 2019-10-11 17:49:24 -0400 | [diff] [blame] | 27 | |
Courtney Goeltzenleuchter | febdcf5 | 2019-10-28 10:54:03 -0600 | [diff] [blame] | 28 | # Current revision of VK-GL-CTS (a.k.a dEQP). |
angle-autoroll | d6029d6 | 2020-12-04 13:54:15 +0000 | [diff] [blame] | 29 | 'vk_gl_cts_revision': '41331850eb212df08e010b4d861992fe0aae6222', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 30 | |
| 31 | # Current revision of glslang, the Khronos SPIRV compiler. |
angle-autoroll | 4277f2f | 2020-12-03 20:15:30 +0000 | [diff] [blame] | 32 | 'glslang_revision': 'dd69df7f3dac26362e10b0f38efb9e47990f7537', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 33 | |
Jamie Madill | 0703568 | 2019-10-25 09:00:41 -0400 | [diff] [blame] | 34 | # Current revision of googletest. |
| 35 | # Note: this dep cannot be auto-rolled b/c of nesting. |
Yuly Novikov | 7d38b0b | 2020-08-19 17:33:31 -0400 | [diff] [blame] | 36 | 'googletest_revision': '4fe018038f87675c083d0cfb6a6b57c274fb1753', |
| 37 | |
| 38 | # Current revision of Chrome's third_party googletest directory. This |
| 39 | # repository is mirrored as a separate repository, with separate git hashes |
| 40 | # that don't match the external googletest repository or Chrome. Mirrored |
| 41 | # patches will have a different git hash associated with them. |
| 42 | # To roll, first get the new hash for chromium_googletest_revision from the |
| 43 | # mirror of third_party/googletest located here: |
| 44 | # https://chromium.googlesource.com/chromium/src/third_party/googletest/ |
| 45 | # Then get the new hash for googletest_revision from the root Chrome DEPS |
| 46 | # file: https://source.chromium.org/chromium/chromium/src/+/master:DEPS |
| 47 | 'chromium_googletest_revision': 'c20c5a3085ab4d90fdb403e3ac98e7991317dd27', |
Jamie Madill | 0703568 | 2019-10-25 09:00:41 -0400 | [diff] [blame] | 48 | |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 49 | # Current revision of jsoncpp. |
| 50 | # Note: this dep cannot be auto-rolled b/c of nesting. |
| 51 | 'jsoncpp_revision': '645250b6690785be60ab6780ce4b58698d884d11', |
| 52 | |
Jordan Bayles | 1265dbe | 2020-06-24 15:12:17 -0700 | [diff] [blame] | 53 | # Current revision of Chrome's third_party jsoncpp directory. This repository |
| 54 | # is mirrored as a separate repository, with separate git hashes that |
| 55 | # don't match the external JsonCpp repository or Chrome. Mirrored patches |
| 56 | # will have a different git hash associated with them. |
| 57 | # To roll, first get the new hash for chromium_jsoncpp_revision from the |
| 58 | # mirror of third_party/jsoncpp located here: |
| 59 | # https://chromium.googlesource.com/chromium/src/third_party/jsoncpp/ |
| 60 | # Then get the new hash for jsoncpp_revision from the root Chrome DEPS file: |
| 61 | # https://source.chromium.org/chromium/chromium/src/+/master:DEPS |
Yuly Novikov | 7d38b0b | 2020-08-19 17:33:31 -0400 | [diff] [blame] | 62 | 'chromium_jsoncpp_revision': '30a6ac108e24dabac7c2e0df4d33d55032af4ee7', |
Jordan Bayles | 1265dbe | 2020-06-24 15:12:17 -0700 | [diff] [blame] | 63 | |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 64 | # Current revision of patched-yasm. |
| 65 | # Note: this dep cannot be auto-rolled b/c of nesting. |
| 66 | 'patched_yasm_revision': '720b70524a4424b15fc57e82263568c8ba0496ad', |
| 67 | |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 68 | # Current revision of spirv-cross, the Khronos SPIRV cross compiler. |
Le Hoang Quyen | bcf9957 | 2020-05-11 00:50:00 +0800 | [diff] [blame] | 69 | 'spirv_cross_revision': 'f38cbeb814c73510b85697adbe5e894f9eac978f', |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 70 | |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 71 | # Current revision fo the SPIRV-Headers Vulkan support library. |
angle-autoroll | ed489d1 | 2020-10-23 10:01:13 +0000 | [diff] [blame] | 72 | 'spirv_headers_revision': '05836bdba63e7debce9fa9feaed42f20cd43af9d', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 73 | |
| 74 | # Current revision of SPIRV-Tools for Vulkan. |
angle-autoroll | a80726a | 2020-11-19 10:01:18 +0000 | [diff] [blame] | 75 | 'spirv_tools_revision': '671914c28e8249f0a555726a0f3f38691fe5c1df', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 76 | |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 77 | # Current revision of Khronos Vulkan-Headers. |
angle-autoroll | c91cb9e | 2020-11-18 10:01:25 +0000 | [diff] [blame] | 78 | 'vulkan_headers_revision': '30e70cbd9850560cb55bffadb8017e90c04c42f5', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 79 | |
| 80 | # Current revision of Khronos Vulkan-Loader. |
angle-autoroll | 81de58a | 2020-11-24 10:01:09 +0000 | [diff] [blame] | 81 | 'vulkan_loader_revision': '02a49daeeeceb077e5ab8c80e87c22dcbb4a102b', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 82 | |
| 83 | # Current revision of Khronos Vulkan-Tools. |
angle-autoroll | 8a657ff | 2020-11-24 10:01:28 +0000 | [diff] [blame] | 84 | 'vulkan_tools_revision': '0e8c2a5ca5f302f0137550bca1d8557cbaf87ad7', |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 85 | |
| 86 | # Current revision of Khronos Vulkan-ValidationLayers. |
angle-autoroll | 619ae00 | 2020-11-30 10:01:51 +0000 | [diff] [blame] | 87 | 'vulkan_validation_revision': 'ce0450b9e8e54f0b8c6fff185166e1e42e0cf7c2', |
Geoff Lang | 6e687af | 2019-10-17 14:36:41 -0400 | [diff] [blame] | 88 | |
| 89 | # Three lines of non-changing comments so that |
| 90 | # the commit queue can handle CLs rolling catapult |
| 91 | # and whatever else without interference from each other. |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 92 | 'catapult_revision': '4565794f5eda08cefef9bf842e16249fc8aeb5bc', |
Jamie Madill | b99bbba | 2020-09-13 10:34:54 -0400 | [diff] [blame] | 93 | |
| 94 | # Three lines of non-changing comments so that |
| 95 | # the commit queue can handle CLs rolling luci-go |
| 96 | # and whatever else without interference from each other. |
angle-autoroll | 3d06102 | 2020-11-30 08:16:49 +0000 | [diff] [blame] | 97 | 'luci_go': 'git_revision:67aba6e3373bb0b9e3ef9871362045736cd29b6e', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 98 | } |
| 99 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 100 | deps = { |
alokp@chromium.org | 416fcd3 | 2012-04-11 16:23:44 +0000 | [diff] [blame] | 101 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 102 | 'build': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 103 | 'url': '{chromium_git}/chromium/src/build.git@115823df498dc216a4167523e2a41be1ba009489', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 104 | 'condition': 'not build_with_chromium', |
| 105 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 106 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 107 | 'buildtools': { |
angle-autoroll | dc515d4 | 2020-11-06 07:00:05 +0000 | [diff] [blame] | 108 | 'url': '{chromium_git}/chromium/src/buildtools.git@6302c1175607a436e18947a5abe9df2209e845fc', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 109 | 'condition': 'not build_with_chromium', |
| 110 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 111 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 112 | 'testing': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 113 | 'url': '{chromium_git}/chromium/src/testing@baeb2e9897cc343767ac1a246364b6f3f327b9dc', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 114 | 'condition': 'not build_with_chromium', |
| 115 | }, |
alokp@chromium.org | 5cd9c60 | 2012-05-16 23:37:50 +0000 | [diff] [blame] | 116 | |
Tim Van Patten | ed33795 | 2020-07-23 12:58:10 -0600 | [diff] [blame] | 117 | 'third_party/abseil-cpp': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 118 | 'url': '{chromium_git}/chromium/src/third_party/abseil-cpp@29b47fedf0572a3b18608439e1c5d98030f241f7', |
Tim Van Patten | ed33795 | 2020-07-23 12:58:10 -0600 | [diff] [blame] | 119 | 'condition': 'not build_with_chromium', |
| 120 | }, |
| 121 | |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 122 | 'third_party/android_ndk': { |
| 123 | 'url': '{chromium_git}/android_ndk.git@27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87', |
| 124 | 'condition': 'checkout_android and not build_with_chromium', |
| 125 | }, |
| 126 | |
| 127 | 'third_party/catapult': { |
| 128 | 'url': '{chromium_git}/catapult.git@{catapult_revision}', |
Jamie Madill | acd15ca | 2020-10-11 17:16:34 -0400 | [diff] [blame] | 129 | 'condition': 'not build_with_chromium', |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 130 | }, |
| 131 | |
Courtney Goeltzenleuchter | febdcf5 | 2019-10-28 10:54:03 -0600 | [diff] [blame] | 132 | # Cherry is a dEQP/VK-GL-CTS management GUI written in Go. We use it for viewing test results. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 133 | 'third_party/cherry': { |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 134 | 'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc', |
| 135 | 'condition': 'not build_with_chromium', |
| 136 | }, |
Jamie Madill | 9e76f56 | 2015-10-02 08:57:14 -0400 | [diff] [blame] | 137 | |
Yuly Novikov | 6a652f1 | 2020-08-12 21:12:47 -0400 | [diff] [blame] | 138 | # We never want to checkout chromium, |
| 139 | # but need a dummy DEPS entry for the autoroller |
| 140 | 'third_party/dummy_chromium': { |
| 141 | 'url': '{chromium_git}/chromium/src.git@{chromium_revision}', |
| 142 | 'condition': 'dummy_checkout_chromium', |
| 143 | }, |
| 144 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 145 | 'third_party/fuchsia-sdk': { |
Jamie Madill | 130fdbc | 2019-10-10 19:13:07 -0400 | [diff] [blame] | 146 | 'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 147 | 'condition': 'checkout_fuchsia and not build_with_chromium', |
| 148 | }, |
| 149 | |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 150 | # Closed-source OpenGL ES 1.1 Conformance tests. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 151 | 'third_party/gles1_conform': { |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 152 | 'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e', |
Cody Northrop | 84f45f1 | 2019-12-18 14:34:29 -0700 | [diff] [blame] | 153 | 'condition': 'checkout_angle_internal', |
Jamie Madill | 67a017f | 2019-10-10 15:27:27 -0400 | [diff] [blame] | 154 | }, |
| 155 | |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 156 | # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 157 | 'third_party/glmark2/src': { |
Jamie Madill | 2971fd3 | 2019-08-12 16:53:21 -0400 | [diff] [blame] | 158 | 'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 159 | }, |
| 160 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 161 | 'third_party/glslang/src': { |
Tobin Ehlis | 317a9eb | 2018-11-29 12:51:46 -0700 | [diff] [blame] | 162 | 'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}', |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 163 | 'condition': 'not build_with_chromium', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 164 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 165 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 166 | 'third_party/googletest': { |
Yuly Novikov | 7d38b0b | 2020-08-19 17:33:31 -0400 | [diff] [blame] | 167 | 'url': '{chromium_git}/chromium/src/third_party/googletest@{chromium_googletest_revision}', |
Jamie Madill | cf9b285 | 2019-02-13 09:15:26 -0500 | [diff] [blame] | 168 | 'condition': 'not build_with_chromium', |
| 169 | }, |
| 170 | |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 171 | # libjpeg_turbo is used by glmark2. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 172 | 'third_party/libjpeg_turbo': { |
angle-autoroll | aafe855 | 2020-12-04 22:47:48 +0000 | [diff] [blame] | 173 | 'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@bbb828223e9c8f83f0e84db1e98b116029e62765', |
Jamie Madill | 55959b0 | 2019-03-05 10:07:41 -0500 | [diff] [blame] | 174 | 'condition': 'not build_with_chromium', |
| 175 | }, |
| 176 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 177 | 'third_party/libpng/src': { |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 178 | 'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c', |
| 179 | 'condition': 'not build_with_chromium', |
| 180 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 181 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 182 | 'third_party/jsoncpp': { |
Jordan Bayles | 1265dbe | 2020-06-24 15:12:17 -0700 | [diff] [blame] | 183 | 'url': '{chromium_git}/chromium/src/third_party/jsoncpp@{chromium_jsoncpp_revision}', |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 184 | 'condition': 'not build_with_chromium', |
| 185 | }, |
Tobin Ehlis | 5fdc38c | 2018-08-28 09:20:57 -0600 | [diff] [blame] | 186 | |
Jamie Madill | 4395170 | 2020-04-27 16:57:46 -0400 | [diff] [blame] | 187 | 'third_party/nasm': { |
Jamie Madill | 2321158 | 2020-07-21 10:08:03 -0400 | [diff] [blame] | 188 | 'url': '{chromium_git}/chromium/deps/nasm.git@19f3fad68da99277b2882939d3b2fa4c4b8d51d9', |
Jamie Madill | 4395170 | 2020-04-27 16:57:46 -0400 | [diff] [blame] | 189 | 'condition': 'not build_with_chromium', |
| 190 | }, |
| 191 | |
Jamie Madill | acd15ca | 2020-10-11 17:16:34 -0400 | [diff] [blame] | 192 | 'third_party/protobuf': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 193 | 'url': '{chromium_git}/chromium/src/third_party/protobuf@129acc201e9479fd2b273c61a3cf94f8c3ce3852', |
Jamie Madill | acd15ca | 2020-10-11 17:16:34 -0400 | [diff] [blame] | 194 | 'condition': 'not build_with_chromium', |
| 195 | }, |
| 196 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 197 | 'third_party/Python-Markdown': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 198 | 'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@2bb7b23b6398f9e79bc2fa8c6bc64a3cf1613ebf', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 199 | 'condition': 'not build_with_chromium', |
| 200 | }, |
| 201 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 202 | 'third_party/qemu-linux-x64': { |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 203 | 'packages': [ |
| 204 | { |
| 205 | 'package': 'fuchsia/qemu/linux-amd64', |
| 206 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 207 | }, |
| 208 | ], |
| 209 | 'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)', |
| 210 | 'dep_type': 'cipd', |
| 211 | }, |
| 212 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 213 | 'third_party/qemu-mac-x64': { |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 214 | 'packages': [ |
| 215 | { |
| 216 | 'package': 'fuchsia/qemu/mac-amd64', |
| 217 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 218 | }, |
| 219 | ], |
| 220 | 'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)', |
| 221 | 'dep_type': 'cipd', |
| 222 | }, |
| 223 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 224 | 'third_party/rapidjson/src': { |
Jamie Madill | 46d32e0 | 2019-02-25 17:13:16 -0500 | [diff] [blame] | 225 | 'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63', |
| 226 | }, |
| 227 | |
Le Quyen | a5a04ac | 2019-10-29 22:57:55 +0800 | [diff] [blame] | 228 | 'third_party/spirv-cross/src': { |
| 229 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Cross@{spirv_cross_revision}', |
| 230 | 'condition': 'not build_with_chromium', |
| 231 | }, |
| 232 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 233 | 'third_party/spirv-headers/src': { |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 234 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}', |
Corentin Wallez | a883dd0 | 2018-08-03 18:11:46 +0200 | [diff] [blame] | 235 | 'condition': 'not build_with_chromium', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 236 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 237 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 238 | 'third_party/spirv-tools/src': { |
Jamie Madill | 0cb3b0f | 2019-01-28 09:55:20 -0500 | [diff] [blame] | 239 | 'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}', |
Corentin Wallez | a883dd0 | 2018-08-03 18:11:46 +0200 | [diff] [blame] | 240 | 'condition': 'not build_with_chromium', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 241 | }, |
Jamie Madill | 37ee8a6 | 2016-12-13 15:18:58 -0500 | [diff] [blame] | 242 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 243 | 'third_party/SwiftShader': { |
angle-autoroll | cf023b3 | 2020-12-07 10:01:36 +0000 | [diff] [blame] | 244 | 'url': '{swiftshader_git}/SwiftShader@7c84426d2abe231f3087a2942fd831137eb3b0aa', |
Jamie Madill | 8be7a4c | 2019-09-19 12:48:31 -0400 | [diff] [blame] | 245 | 'condition': 'not build_with_chromium', |
| 246 | }, |
| 247 | |
Tim Van Patten | ed33795 | 2020-07-23 12:58:10 -0600 | [diff] [blame] | 248 | 'third_party/VK-GL-CTS/src': { |
| 249 | 'url': '{chromium_git}/external/github.com/KhronosGroup/VK-GL-CTS@{vk_gl_cts_revision}', |
| 250 | }, |
| 251 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 252 | 'third_party/vulkan-headers/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 253 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}', |
| 254 | }, |
| 255 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 256 | 'third_party/vulkan-loader/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 257 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}', |
| 258 | }, |
| 259 | |
Tim Van Patten | ed33795 | 2020-07-23 12:58:10 -0600 | [diff] [blame] | 260 | 'third_party/vulkan_memory_allocator': { |
| 261 | 'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@065e739079d9d58bef28ccd793cbf512261f09ed', |
| 262 | 'condition': 'not build_with_chromium', |
| 263 | }, |
| 264 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 265 | 'third_party/vulkan-tools/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 266 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}', |
| 267 | }, |
| 268 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 269 | 'third_party/vulkan-validation-layers/src': { |
Tobin Ehlis | b971f49 | 2018-05-24 10:56:17 -0600 | [diff] [blame] | 270 | 'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 271 | }, |
Jamie Madill | 3cd438d | 2015-03-17 11:25:27 -0400 | [diff] [blame] | 272 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 273 | 'third_party/zlib': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 274 | 'url': '{chromium_git}/chromium/src/third_party/zlib@2c183c9f93a328bfb3121284da13cf89a0f7e64a', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 275 | 'condition': 'not build_with_chromium', |
| 276 | }, |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 277 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 278 | 'tools/clang': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 279 | 'url': '{chromium_git}/chromium/src/tools/clang.git@36810de98188eda7bdd6dd578cb5499d16f475b6', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 280 | 'condition': 'not build_with_chromium', |
| 281 | }, |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 282 | |
Le Hoang Quyen | caeb217 | 2019-11-20 22:30:17 +0800 | [diff] [blame] | 283 | 'tools/clang/dsymutil': { |
| 284 | 'packages': [ |
| 285 | { |
| 286 | 'package': 'chromium/llvm-build-tools/dsymutil', |
| 287 | 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
| 288 | } |
| 289 | ], |
| 290 | 'condition': 'checkout_mac and not build_with_chromium', |
| 291 | 'dep_type': 'cipd', |
| 292 | }, |
| 293 | |
Jamie Madill | b99bbba | 2020-09-13 10:34:54 -0400 | [diff] [blame] | 294 | 'tools/luci-go': { |
| 295 | 'packages': [ |
| 296 | { |
| 297 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
| 298 | 'version': Var('luci_go'), |
| 299 | }, |
| 300 | { |
| 301 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
| 302 | 'version': Var('luci_go'), |
| 303 | }, |
| 304 | { |
| 305 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
| 306 | 'version': Var('luci_go'), |
| 307 | }, |
| 308 | ], |
| 309 | 'condition': 'not build_with_chromium', |
| 310 | 'dep_type': 'cipd', |
| 311 | }, |
| 312 | |
| 313 | 'tools/mb': { |
angle-autoroll | a13f684 | 2020-12-08 07:54:47 +0000 | [diff] [blame^] | 314 | 'url': '{chromium_git}/chromium/src/tools/mb@dddd39ba5ac85802da26c0b40f4621721f3a803e', |
Jamie Madill | b99bbba | 2020-09-13 10:34:54 -0400 | [diff] [blame] | 315 | 'condition': 'not build_with_chromium', |
| 316 | }, |
| 317 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 318 | 'tools/md_browser': { |
Yuly Novikov | 5dff607 | 2020-08-19 20:57:36 -0400 | [diff] [blame] | 319 | 'url': '{chromium_git}/chromium/src/tools/md_browser@60141af3603925d99bf3fb22fdfca138416339b1', |
Jamie Madill | 9f95834 | 2019-04-08 09:40:40 -0400 | [diff] [blame] | 320 | 'condition': 'not build_with_chromium', |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 321 | }, |
Jamie Madill | df0ce01 | 2019-09-05 11:04:39 -0400 | [diff] [blame] | 322 | |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 323 | 'tools/memory': { |
angle-autoroll | 64654a8 | 2020-12-02 16:33:31 +0000 | [diff] [blame] | 324 | 'url': '{chromium_git}/chromium/src/tools/memory@71214b910decfe2e7cfc8b0ffc072a1b97da2d36', |
Jamie Madill | df0ce01 | 2019-09-05 11:04:39 -0400 | [diff] [blame] | 325 | 'condition': 'not build_with_chromium', |
| 326 | }, |
Jamie Madill | dff9331 | 2020-09-25 13:31:25 -0400 | [diff] [blame] | 327 | |
Jamie Madill | acd15ca | 2020-10-11 17:16:34 -0400 | [diff] [blame] | 328 | 'tools/protoc_wrapper': { |
| 329 | 'url': '{chromium_git}/chromium/src/tools/protoc_wrapper@203790d7975787dd77c3d870dadb9e4fdc9c907b', |
| 330 | 'condition': 'not build_with_chromium', |
| 331 | }, |
| 332 | |
Jamie Madill | dff9331 | 2020-09-25 13:31:25 -0400 | [diff] [blame] | 333 | 'tools/skia_goldctl/linux': { |
| 334 | 'packages': [ |
| 335 | { |
| 336 | 'package': 'skia/tools/goldctl/linux-amd64', |
angle-autoroll | c0ed6c7 | 2020-12-04 07:49:08 +0000 | [diff] [blame] | 337 | 'version': 'U9IAKman_wN6alsQfNAUzIasErQFGDvx3wn9o0AQBlEC', |
Jamie Madill | dff9331 | 2020-09-25 13:31:25 -0400 | [diff] [blame] | 338 | }, |
| 339 | ], |
| 340 | 'dep_type': 'cipd', |
| 341 | 'condition': 'checkout_linux and not build_with_chromium', |
| 342 | }, |
| 343 | |
| 344 | 'tools/skia_goldctl/win': { |
| 345 | 'packages': [ |
| 346 | { |
| 347 | 'package': 'skia/tools/goldctl/windows-amd64', |
angle-autoroll | c0ed6c7 | 2020-12-04 07:49:08 +0000 | [diff] [blame] | 348 | 'version': 'HYgBDvuNpEKiDYuVIssmP2wgCGe0FS-XKCe18wxZWKwC', |
Jamie Madill | dff9331 | 2020-09-25 13:31:25 -0400 | [diff] [blame] | 349 | }, |
| 350 | ], |
| 351 | 'dep_type': 'cipd', |
| 352 | 'condition': 'checkout_win and not build_with_chromium', |
| 353 | }, |
| 354 | |
| 355 | 'tools/skia_goldctl/mac': { |
| 356 | 'packages': [ |
| 357 | { |
| 358 | 'package': 'skia/tools/goldctl/mac-amd64', |
angle-autoroll | c0ed6c7 | 2020-12-04 07:49:08 +0000 | [diff] [blame] | 359 | 'version': 'xF94ClStkjWlYHAlxYXSOCFYEGhzEgxZEwB4zirJIjUC', |
Jamie Madill | dff9331 | 2020-09-25 13:31:25 -0400 | [diff] [blame] | 360 | }, |
| 361 | ], |
| 362 | 'dep_type': 'cipd', |
| 363 | 'condition': 'checkout_mac and not build_with_chromium', |
| 364 | }, |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 365 | } |
| 366 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 367 | hooks = [ |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 368 | # Pull clang-format binaries using checked-in hashes. |
| 369 | { |
| 370 | 'name': 'clang_format_win', |
| 371 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 372 | 'condition': 'host_os == "win" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 373 | 'action': [ 'download_from_google_storage', |
| 374 | '--no_resume', |
| 375 | '--platform=win32', |
| 376 | '--no_auth', |
| 377 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 378 | '-s', 'buildtools/win/clang-format.exe.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 379 | ], |
| 380 | }, |
| 381 | { |
| 382 | 'name': 'clang_format_mac', |
| 383 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 384 | 'condition': 'host_os == "mac" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 385 | 'action': [ 'download_from_google_storage', |
| 386 | '--no_resume', |
| 387 | '--platform=darwin', |
| 388 | '--no_auth', |
| 389 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 390 | '-s', 'buildtools/mac/clang-format.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 391 | ], |
| 392 | }, |
| 393 | { |
| 394 | 'name': 'clang_format_linux', |
| 395 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 396 | 'condition': 'host_os == "linux" and not build_with_chromium', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 397 | 'action': [ 'download_from_google_storage', |
| 398 | '--no_resume', |
| 399 | '--platform=linux*', |
| 400 | '--no_auth', |
| 401 | '--bucket', 'chromium-clang-format', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 402 | '-s', 'buildtools/linux64/clang-format.sha1', |
Jamie Madill | 2fdd3da | 2015-07-20 10:14:54 -0400 | [diff] [blame] | 403 | ], |
| 404 | }, |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 405 | { |
| 406 | 'name': 'sysroot_x86', |
| 407 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 408 | 'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 409 | 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py', |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 410 | '--arch=x86'], |
| 411 | }, |
| 412 | { |
| 413 | 'name': 'sysroot_x64', |
| 414 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 415 | 'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 416 | 'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py', |
Tobin Ehlis | 9d4277b | 2018-05-21 16:22:22 -0600 | [diff] [blame] | 417 | '--arch=x64'], |
| 418 | }, |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 419 | { |
| 420 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
| 421 | 'name': 'win_toolchain', |
| 422 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 423 | 'condition': 'checkout_win and not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 424 | 'action': ['python', 'build/vs_toolchain.py', 'update', '--force'], |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 425 | }, |
Geoff Lang | 66ae531 | 2019-04-01 16:35:53 -0400 | [diff] [blame] | 426 | { |
| 427 | # Update the Mac toolchain if necessary. |
| 428 | 'name': 'mac_toolchain', |
| 429 | 'pattern': '.', |
| 430 | 'condition': 'checkout_mac and not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 431 | 'action': ['python', 'build/mac_toolchain.py'], |
Geoff Lang | 66ae531 | 2019-04-01 16:35:53 -0400 | [diff] [blame] | 432 | }, |
Jamie Madill | 027717f | 2018-04-13 15:51:24 -0400 | [diff] [blame] | 433 | |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 434 | { |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 435 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 436 | 'name': 'clang', |
| 437 | 'pattern': '.', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 438 | 'action': ['python', 'tools/clang/scripts/update.py'], |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 439 | 'condition': 'not build_with_chromium', |
Frank Henigman | d0ef13a | 2017-08-28 22:53:24 -0400 | [diff] [blame] | 440 | }, |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 441 | |
Shahbaz Youssefi | 957e9b8 | 2018-10-05 11:00:50 -0400 | [diff] [blame] | 442 | { |
| 443 | # Update LASTCHANGE. |
| 444 | 'name': 'lastchange', |
| 445 | 'pattern': '.', |
| 446 | 'condition': 'not build_with_chromium', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 447 | 'action': ['python', 'build/util/lastchange.py', |
| 448 | '-o', 'build/util/LASTCHANGE'], |
Shahbaz Youssefi | 957e9b8 | 2018-10-05 11:00:50 -0400 | [diff] [blame] | 449 | }, |
| 450 | |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 451 | # Pull rc binaries using checked-in hashes. |
| 452 | { |
| 453 | 'name': 'rc_win', |
| 454 | 'pattern': '.', |
Edward Lemur | 8ae09b0 | 2018-06-01 14:18:28 -0400 | [diff] [blame] | 455 | 'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)', |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 456 | 'action': [ 'download_from_google_storage', |
| 457 | '--no_resume', |
| 458 | '--no_auth', |
| 459 | '--bucket', 'chromium-browser-clang/rc', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 460 | '-s', 'build/toolchain/win/rc/win/rc.exe.sha1', |
Jamie Madill | 940c48b | 2017-10-23 23:25:17 -0400 | [diff] [blame] | 461 | ], |
| 462 | }, |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 463 | |
| 464 | { |
| 465 | 'name': 'fuchsia_sdk', |
| 466 | 'pattern': '.', |
| 467 | 'condition': 'checkout_fuchsia and not build_with_chromium', |
| 468 | 'action': [ |
| 469 | 'python', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 470 | 'build/fuchsia/update_sdk.py', |
Michael Spang | 229fc83 | 2019-01-21 18:09:15 -0500 | [diff] [blame] | 471 | ], |
| 472 | }, |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 473 | |
Shahbaz Youssefi | 82418c8 | 2019-04-05 15:56:03 -0400 | [diff] [blame] | 474 | # Download glslang validator binary for Linux. |
| 475 | { |
| 476 | 'name': 'linux_glslang_validator', |
| 477 | 'pattern': '.', |
| 478 | 'condition': 'checkout_linux and not build_with_chromium', |
| 479 | 'action': [ 'download_from_google_storage', |
| 480 | '--no_resume', |
| 481 | '--platform=linux*', |
| 482 | '--no_auth', |
| 483 | '--bucket', 'angle-glslang-validator', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 484 | '-s', 'tools/glslang/glslang_validator.sha1', |
Shahbaz Youssefi | 82418c8 | 2019-04-05 15:56:03 -0400 | [diff] [blame] | 485 | ], |
| 486 | }, |
| 487 | |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 488 | # Download glslang validator binary for Windows. |
| 489 | { |
| 490 | 'name': 'win_glslang_validator', |
| 491 | 'pattern': '.', |
| 492 | 'condition': 'checkout_win and not build_with_chromium', |
| 493 | 'action': [ 'download_from_google_storage', |
| 494 | '--no_resume', |
| 495 | '--platform=win32*', |
| 496 | '--no_auth', |
| 497 | '--bucket', 'angle-glslang-validator', |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 498 | '-s', 'tools/glslang/glslang_validator.exe.sha1', |
Jamie Madill | d5ff4fa | 2019-04-08 09:25:23 -0400 | [diff] [blame] | 499 | ], |
| 500 | }, |
Shahbaz Youssefi | 5efb36b | 2019-11-25 16:14:55 -0500 | [diff] [blame] | 501 | |
| 502 | # Download flex/bison binaries for Linux. |
| 503 | { |
| 504 | 'name': 'linux_flex_bison', |
| 505 | 'pattern': '.', |
| 506 | 'condition': 'checkout_linux and not build_with_chromium', |
| 507 | 'action': [ 'download_from_google_storage', |
| 508 | '--no_resume', |
| 509 | '--platform=linux*', |
| 510 | '--no_auth', |
| 511 | '--bucket', 'angle-flex-bison', |
| 512 | '-d', 'tools/flex-bison/linux/', |
| 513 | ], |
| 514 | }, |
| 515 | |
| 516 | # Download flex/bison binaries for Windows. |
| 517 | { |
| 518 | 'name': 'win_flex_bison', |
| 519 | 'pattern': '.', |
| 520 | 'condition': 'checkout_win and not build_with_chromium', |
| 521 | 'action': [ 'download_from_google_storage', |
| 522 | '--no_resume', |
| 523 | '--platform=win32*', |
| 524 | '--no_auth', |
| 525 | '--bucket', 'angle-flex-bison', |
| 526 | '-d', 'tools/flex-bison/windows/', |
| 527 | ], |
| 528 | }, |
Cody Northrop | 080d711 | 2020-01-08 13:04:44 -0700 | [diff] [blame] | 529 | |
| 530 | # Download internal captures for perf tests |
| 531 | { |
| 532 | 'name': 'restricted_traces', |
| 533 | 'pattern': '\\.sha1', |
| 534 | 'condition': 'checkout_angle_internal', |
Jamie Madill | a7c16c2 | 2020-10-21 22:54:56 -0400 | [diff] [blame] | 535 | 'action': [ 'vpython3', |
Jamie Madill | bda2205 | 2020-09-17 14:37:25 -0400 | [diff] [blame] | 536 | 'src/tests/restricted_traces/download_restricted_traces.py', |
| 537 | 'src/tests/restricted_traces', |
Cody Northrop | 080d711 | 2020-01-08 13:04:44 -0700 | [diff] [blame] | 538 | ] |
| 539 | } |
alokp@chromium.org | 29d56fb | 2010-04-06 15:42:22 +0000 | [diff] [blame] | 540 | ] |
Jamie Madill | 2078931 | 2016-10-28 14:05:26 -0400 | [diff] [blame] | 541 | |
| 542 | recursedeps = [ |
| 543 | # buildtools provides clang_format. |
Jamie Madill | 8ba5049 | 2019-10-10 17:46:54 -0400 | [diff] [blame] | 544 | 'buildtools', |
Jamie Madill | 0703568 | 2019-10-25 09:00:41 -0400 | [diff] [blame] | 545 | 'third_party/googletest', |
Jamie Madill | e7c8e80 | 2019-10-26 08:16:12 -0400 | [diff] [blame] | 546 | 'third_party/jsoncpp', |
Jamie Madill | 2078931 | 2016-10-28 14:05:26 -0400 | [diff] [blame] | 547 | ] |