andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 1 | # This file is used to manage the dependencies of the Chromium src repo. It is |
| 2 | # used by gclient to determine what version of each dependency to check out, and |
| 3 | # where. |
[email protected] | 3645abc | 2013-10-28 22:41:28 | [diff] [blame] | 4 | # |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 5 | # For more information, please refer to the official documentation: |
| 6 | # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
[email protected] | 3645abc | 2013-10-28 22:41:28 | [diff] [blame] | 7 | # |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 8 | # When adding a new dependency, please update the top-level .gitignore file |
| 9 | # to list the dependency's destination directory. |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 10 | # |
| 11 | # ----------------------------------------------------------------------------- |
| 12 | # Rolling deps |
| 13 | # ----------------------------------------------------------------------------- |
| 14 | # All repositories in this file are git-based, using Chromium git mirrors where |
| 15 | # necessary (e.g., a git mirror is used when the source project is SVN-based). |
| 16 | # To update the revision that Chromium pulls for a given dependency: |
| 17 | # |
| 18 | # # Create and switch to a new branch |
| 19 | # git new-branch depsroll |
andrewhayden | 1859920b | 2015-08-11 13:13:24 | [diff] [blame] | 20 | # # Run roll-dep (provided by depot_tools) giving the dep's path and optionally |
| 21 | # # a regex that will match the line in this file that contains the current |
| 22 | # # revision. The script ALWAYS rolls the dependency to the latest revision |
| 23 | # # in origin/master. The path for the dep should start with src/. |
| 24 | # roll-dep src/third_party/foo_package/src foo_package.git |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 25 | # # You should now have a modified DEPS file; commit and upload as normal |
| 26 | # git commit -a |
| 27 | # git cl upload |
| 28 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 29 | gclient_gn_args_file = 'src/build/config/gclient_args.gni' |
| 30 | gclient_gn_args = [ |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 31 | 'build_with_chromium', |
John Budorick | 24bdb02 | 2018-04-23 14:15:28 | [diff] [blame] | 32 | 'checkout_android', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 33 | 'checkout_android_native_support', |
Rohit Rao | 2b70cbc0 | 2019-02-21 16:31:27 | [diff] [blame] | 34 | 'checkout_ios_webkit', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 35 | 'checkout_nacl', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 36 | 'checkout_oculus_sdk', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 37 | 'checkout_openxr', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 38 | ] |
| 39 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 40 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 41 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 42 | # Variable that can be used to support multiple build scenarios, like having |
| 43 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 44 | # conditionally etc. |
| 45 | 'build_with_chromium': True, |
| 46 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 47 | # By default, we should check out everything needed to run on the main |
| 48 | # chromium waterfalls. This var can be also be set to "small", in order |
| 49 | # to skip things are not strictly needed to build chromium for development |
| 50 | # purposes. |
| 51 | 'checkout_configuration': 'default', |
| 52 | |
Michael Moss | c09fc5c | 2019-01-18 08:00:03 | [diff] [blame] | 53 | # By default, don't check out android. Will be overridden by gclient |
| 54 | # variables. |
| 55 | # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 56 | 'checkout_android': False, |
| 57 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 58 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 59 | # build ARC++ support libraries. |
| 60 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 61 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 62 | # By default, do not check out Chromium autofill captured sites test |
| 63 | # dependencies. These dependencies include very large numbers of very |
| 64 | # large web capture files. Captured sites test dependencies are also |
| 65 | # restricted to Googlers only. |
| 66 | 'checkout_chromium_autofill_test_dependencies': False, |
| 67 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 68 | # By default, do not check out Chromium password manager captured sites test |
| 69 | # dependencies. These dependencies include very large numbers of very |
| 70 | # large web capture files. Captured sites test dependencies are also |
| 71 | # restricted to Googlers only. |
| 72 | 'checkout_chromium_password_manager_test_dependencies': False, |
| 73 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 74 | # Check out and download nacl by default. This can be disabled e.g. with |
| 75 | # custom_vars. |
| 76 | 'checkout_nacl': True, |
| 77 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 78 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 79 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 80 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 81 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 82 | # Fetch the additional packages and files needed to run all of the |
| 83 | # telemetry tests. This is false by default as some stuff is only |
| 84 | # privately accessible. |
| 85 | 'checkout_telemetry_dependencies': False, |
| 86 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 87 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 88 | # process the raw profiles produced by instrumented targets (built with |
| 89 | # the gn arg 'use_clang_coverage'). |
| 90 | 'checkout_clang_coverage_tools': False, |
| 91 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 92 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 93 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 94 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 95 | # By default do not checkout the OpenXR loader library. |
| 96 | 'checkout_openxr' : False, |
| 97 | |
Takuto Ikuta | e306cbad | 2018-12-06 16:43:55 | [diff] [blame] | 98 | 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| 99 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 100 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 101 | # By default, do not check out WebKit for iOS, as it is not needed unless |
| 102 | # running against ToT WebKit rather than system WebKit. This can be overridden |
| 103 | # e.g. with custom_vars. |
| 104 | 'checkout_ios_webkit': False, |
| 105 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 106 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 107 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 108 | 'cros_board': '', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 109 | # Building for CrOS is only supported on linux currently. |
| 110 | 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_board}" != "")', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 111 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 112 | # as an expression. |
John Budorick | e14ee2f3 | 2019-05-24 18:18:08 | [diff] [blame] | 113 | 'cros_download_vm': '("{cros_board}" == "amd64-generic") or ("{cros_board}" == "betty")', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 114 | # Should we build and test for public (ie: full) CrOS images, or private |
| 115 | # (ie: release) images. |
| 116 | 'use_public_cros_config': 'not checkout_src_internal', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 117 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 118 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 119 | 'angle_root': 'src/third_party/angle', |
| 120 | |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 121 | # luci-go CIPD package version. |
Takuto Ikuta | 4541db87 | 2018-12-12 18:03:10 | [diff] [blame] | 122 | 'luci_go': 'git_revision:25958d48e89e980e2a97daeddc977fb5e2e1fb8c', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 123 | |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 124 | # This can be overridden, e.g. with custom_vars, to build clang from HEAD |
| 125 | # instead of downloading the prebuilt pinned revision. |
| 126 | 'llvm_force_head_revision': False, |
| 127 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 128 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 129 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 130 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 131 | 'chromium_git': 'https://chromium.googlesource.com', |
| 132 | 'dawn_git': 'https://dawn.googlesource.com', |
| 133 | 'pdfium_git': 'https://pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 134 | 'quiche_git': 'https://quiche.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 135 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 136 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 137 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 138 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 139 | # the commit queue can handle CLs rolling sfntly |
| 140 | # and whatever else without interference from each other. |
Lei Zhang | 6705d19 | 2019-01-08 20:30:06 | [diff] [blame] | 141 | 'sfntly_revision': 'e24c73130c663c9f329e78f5ca3fd5bd83b02622', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 142 | # Three lines of non-changing comments so that |
| 143 | # the commit queue can handle CLs rolling Skia |
| 144 | # and whatever else without interference from each other. |
chromium-autoroll | b817828 | 2019-06-26 05:22:00 | [diff] [blame] | 145 | 'skia_revision': '4e2033e84374e3487fa05dd64fd4da143d4498ea', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 146 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 147 | # the commit queue can handle CLs rolling V8 |
| 148 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | 7c9c341 | 2019-06-26 17:53:43 | [diff] [blame] | 149 | 'v8_revision': 'bdbc2153d5435cdb4bf1982b73bd09137d3ae84e', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 150 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 151 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 152 | # and whatever else without interference from each other. |
Ben Pastene | 0ab642c | 2019-06-07 20:27:11 | [diff] [blame] | 153 | 'swarming_revision': '96f125709acfd0b48fc1e5dae7d6ea42291726ac', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 154 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 155 | # the commit queue can handle CLs rolling ANGLE |
| 156 | # and whatever else without interference from each other. |
chromium-autoroll | 63db43c | 2019-06-26 19:34:09 | [diff] [blame] | 157 | 'angle_revision': 'cc82c3f0f1e08f183d6fa7039c7e2552128a63fd', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 158 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 159 | # the commit queue can handle CLs rolling SwiftShader |
| 160 | # and whatever else without interference from each other. |
chromium-autoroll | 3471e6f | 2019-06-26 17:01:02 | [diff] [blame] | 161 | 'swiftshader_revision': 'a0b3a02601da8c48012a4259d335be04d00818da', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 162 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 163 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 164 | # and whatever else without interference from each other. |
chromium-autoroll | a7f01608 | 2019-06-26 03:47:08 | [diff] [blame] | 165 | 'pdfium_revision': '2b04768b92e540bf28cd9e120be87fb60d3f91cc', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 166 | # Three lines of non-changing comments so that |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 167 | # the commit queue can handle CLs rolling BoringSSL |
| 168 | # and whatever else without interference from each other. |
David Benjamin | 0cf6267 | 2019-02-11 20:30:55 | [diff] [blame] | 169 | # |
| 170 | # Note this revision should be updated with |
| 171 | # third_party/boringssl/roll_boringssl.py, not roll-dep. |
David Benjamin | 98ef6914 | 2019-06-19 20:09:14 | [diff] [blame] | 172 | 'boringssl_revision': '92b7c89e6e8ba82924b57153bea68241cc45f658', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 173 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 174 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 175 | # and whatever else without interference from each other. |
Elly Fong-Jones | 86b7e2a | 2019-02-21 17:02:01 | [diff] [blame] | 176 | 'google_toolbox_for_mac_revision': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 177 | # Three lines of non-changing comments so that |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 178 | # the commit queue can handle CLs rolling googletest |
| 179 | # and whatever else without interference from each other. |
chromium-autoroll | 29e350f | 2019-06-17 23:45:45 | [diff] [blame] | 180 | 'googletest_revision': 'd7003576dd133856432e2e07340f45926242cc3a', |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 181 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 182 | # the commit queue can handle CLs rolling lighttpd |
| 183 | # and whatever else without interference from each other. |
| 184 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 185 | # Three lines of non-changing comments so that |
| 186 | # the commit queue can handle CLs rolling lss |
| 187 | # and whatever else without interference from each other. |
Torne (Richard Coles) | 9a6106e | 2017-10-20 17:48:17 | [diff] [blame] | 188 | 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 189 | # Three lines of non-changing comments so that |
| 190 | # the commit queue can handle CLs rolling NaCl |
| 191 | # and whatever else without interference from each other. |
chromium-autoroll | 37aa2da1 | 2019-06-08 00:48:25 | [diff] [blame] | 192 | 'nacl_revision': 'c4cf6f0621b94cca4053b19fa01ef329f5663880', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 193 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 194 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 195 | # and whatever else without interference from each other. |
chromium-autoroll | eb40776 | 2019-06-24 05:58:17 | [diff] [blame] | 196 | 'freetype_revision': '81445c034aca36040b6311dc71a2cbed9548b262', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 197 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 198 | # the commit queue can handle CLs rolling HarfBuzz |
| 199 | # and whatever else without interference from each other. |
Dominik Röttsches | e7691e4 | 2019-06-05 11:20:12 | [diff] [blame] | 200 | 'harfbuzz_revision': '659eeddb2df5b97cc01bd39e106381f65c9f41f1', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 201 | # Three lines of non-changing comments so that |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 202 | # the commit queue can handle CLs rolling Emoji Segmenter |
| 203 | # and whatever else without interference from each other. |
| 204 | 'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e', |
| 205 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 206 | # the commit queue can handle CLs rolling catapult |
| 207 | # and whatever else without interference from each other. |
chromium-autoroll | 1d463a4 | 2019-06-26 10:40:07 | [diff] [blame] | 208 | 'catapult_revision': 'd16c4109ffabb35f9f1288c6f01d90bd02b740ce', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 209 | # Three lines of non-changing comments so that |
| 210 | # the commit queue can handle CLs rolling libFuzzer |
| 211 | # and whatever else without interference from each other. |
Max Moroz | 7d3c9376 | 2019-06-21 01:10:20 | [diff] [blame] | 212 | 'libfuzzer_revision': 'b9f51dc8c98065df0c8da13c051046f5bab833db', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 213 | # Three lines of non-changing comments so that |
| 214 | # the commit queue can handle CLs rolling devtools-node-modules |
| 215 | # and whatever else without interference from each other. |
Will Chen | fa87418 | 2018-01-03 19:03:26 | [diff] [blame] | 216 | 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 217 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 218 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 219 | # and whatever else without interference from each other. |
Jonathan Metzman | 85809f64 | 2019-01-24 22:55:58 | [diff] [blame] | 220 | 'libprotobuf-mutator': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 221 | # Three lines of non-changing comments so that |
| 222 | # the commit queue can handle CLs rolling feed |
| 223 | # and whatever else without interference from each other. |
Sky Malice | ee3585c | 2019-06-24 22:33:10 | [diff] [blame] | 224 | 'feed_revision': '5708e2dcfff432c1fe4106b876813a7205e32ea0', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 225 | # Three lines of non-changing comments so that |
| 226 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 227 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 228 | 'android_sdk_build-tools_version': 'DLK621q5_Bga5EsOr7cp6bHWWxFKx6UHLu_Ix_m3AckC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 229 | # Three lines of non-changing comments so that |
| 230 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 231 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 232 | 'android_sdk_emulator_version': 'xhyuoquVvBTcJelgRjMKZeoBVSQRjB7pLVJPt5C9saIC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 233 | # Three lines of non-changing comments so that |
| 234 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 235 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 236 | 'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 237 | # Three lines of non-changing comments so that |
| 238 | # the commit queue can handle CLs rolling android_sdk_patcher_version |
| 239 | # and whatever else without interference from each other. |
| 240 | 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 241 | # Three lines of non-changing comments so that |
| 242 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 243 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 244 | 'android_sdk_platform-tools_version': 'MSnxgXN7IurL-MQs1RrTkSFSb8Xd1UtZjLArI8Ty1FgC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 245 | # Three lines of non-changing comments so that |
| 246 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 247 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 248 | 'android_sdk_platforms_version': 'Kg2t9p0YnQk8bldUv4VA3o156uPXLUfIFAmVZ-Gm5ewC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 249 | # Three lines of non-changing comments so that |
| 250 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 251 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 252 | 'android_sdk_sources_version': 'K9uEn3JvNELEVjjVK_GQD3ZQD3rqAnJSxCWxjmUmRkgC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 253 | # Three lines of non-changing comments so that |
| 254 | # the commit queue can handle CLs rolling android_sdk_tools_version |
| 255 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 256 | 'android_sdk_tools_version': 'wYcRQC2WHsw2dKWs4EA7fw9Qsyzu1ds1_fRjKmGxe5QC', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 257 | # Three lines of non-changing comments so that |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 258 | # the commit queue can handle CLs rolling android_sdk_tools-lint_version |
| 259 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 260 | 'android_sdk_tools-lint_version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC', |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 261 | # Three lines of non-changing comments so that |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 262 | # the commit queue can handle CLs rolling feed |
| 263 | # and whatever else without interference from each other. |
chromium-autoroll | 62e39e3 | 2019-06-26 09:08:54 | [diff] [blame] | 264 | 'spv_tools_revision': 'dfcb5a1e1042f2debae1ca11405d5d2e508e50c5', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 265 | # Three lines of non-changing comments so that |
| 266 | # the commit queue can handle CLs rolling feed |
| 267 | # and whatever else without interference from each other. |
chromium-autoroll | 5c277e1 | 2019-06-24 11:09:01 | [diff] [blame] | 268 | 'spv_headers_revision': 'de99d4d834aeb51dd9f099baa285bd44fd04bb3d', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 269 | # Three lines of non-changing comments so that |
| 270 | # the commit queue can handle CLs rolling feed |
| 271 | # and whatever else without interference from each other. |
Frank Henigman | 242226e | 2019-04-11 16:07:53 | [diff] [blame] | 272 | 'spirv_cross_revision': 'f07a4e16a60e1d0231dda5d3883550761bd70a47', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 273 | # Three lines of non-changing comments so that |
| 274 | # the commit queue can handle CLs rolling feed |
| 275 | # and whatever else without interference from each other. |
chromium-autoroll | 21ca4f7 | 2019-06-26 01:09:40 | [diff] [blame] | 276 | 'shaderc_revision': '11cf0a3029edc26c133a15a2506b0c6b60e18c25', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 277 | # Three lines of non-changing comments so that |
| 278 | # the commit queue can handle CLs rolling feed |
| 279 | # and whatever else without interference from each other. |
chromium-autoroll | c2b3aade | 2019-06-26 21:48:47 | [diff] [blame] | 280 | 'dawn_revision': 'ebcf0d31c012ef603503aa9e5a7a6c600c26feda', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 281 | # Three lines of non-changing comments so that |
| 282 | # the commit queue can handle CLs rolling feed |
| 283 | # and whatever else without interference from each other. |
Zhongyi Shi | 48f981a | 2019-06-26 06:08:11 | [diff] [blame] | 284 | 'quiche_revision': '8f3a576515ada564d3e2b560220649f49a21dec1', |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 285 | # Three lines of non-changing comments so that |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 286 | # the commit queue can handle CLs rolling ios_webkit |
| 287 | # and whatever else without interference from each other. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 288 | 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 289 | |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 290 | # TODO(crbug.com/941824): The values below need to be kept in sync |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 291 | # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| 292 | # update the other. There is a presubmit check that checks that |
| 293 | # you've done so; if you are adding new tools to //buildtools and |
| 294 | # hence new revisions to this list, make sure you update the |
| 295 | # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| 296 | # revisions. |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 297 | |
| 298 | # GN CIPD package version. |
Brett Wilson | c3b45ed | 2019-06-24 22:08:59 | [diff] [blame] | 299 | 'gn_version': 'git_revision:972ed755f8e6d31cae9ba15fcd08136ae1a7886f', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 300 | |
Nico Weber | 4647fbba | 2019-04-04 07:38:59 | [diff] [blame] | 301 | # Also, if you change these, update buildtools/DEPS too. Also update the |
| 302 | # libc++ svn_revision in //buildtools/deps_revisions.gni. |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 303 | 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Morten Stenshorne | 8738e5b | 2019-06-14 10:40:23 | [diff] [blame] | 304 | 'libcxx_revision': '5938e0582bac570a41edb3d6a2217c299adc1bc6', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 305 | 'libcxxabi_revision': '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
| 306 | 'libunwind_revision': '69d9b84cca8354117b9fe9705a4430d789ee599b', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 307 | } |
| 308 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 309 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 310 | # If you need to add a new host, contact chrome infrastracture team. |
| 311 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 312 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 313 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 314 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 315 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 316 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 317 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 318 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 319 | 'pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 320 | 'quiche.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 321 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 322 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 323 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 324 | ] |
| 325 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 326 | deps = { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 327 | 'src/buildtools/clang_format/script': |
| 328 | Var('chromium_git') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| 329 | Var('clang_format_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 330 | 'src/buildtools/linux64': { |
| 331 | 'packages': [ |
| 332 | { |
| 333 | 'package': 'gn/gn/linux-amd64', |
| 334 | 'version': Var('gn_version'), |
| 335 | } |
| 336 | ], |
| 337 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 338 | 'condition': 'host_os == "linux"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 339 | }, |
| 340 | 'src/buildtools/mac': { |
| 341 | 'packages': [ |
| 342 | { |
| 343 | 'package': 'gn/gn/mac-amd64', |
| 344 | 'version': Var('gn_version'), |
| 345 | } |
| 346 | ], |
| 347 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 348 | 'condition': 'host_os == "mac"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 349 | }, |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 350 | 'src/buildtools/third_party/libc++/trunk': |
| 351 | Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + |
| 352 | Var('libcxx_revision'), |
| 353 | 'src/buildtools/third_party/libc++abi/trunk': |
| 354 | Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + |
| 355 | Var('libcxxabi_revision'), |
| 356 | 'src/buildtools/third_party/libunwind/trunk': |
| 357 | Var('chromium_git') + '/external/llvm.org/libunwind.git' + '@' + |
| 358 | Var('libunwind_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 359 | 'src/buildtools/win': { |
| 360 | 'packages': [ |
| 361 | { |
| 362 | 'package': 'gn/gn/windows-amd64', |
| 363 | 'version': Var('gn_version'), |
| 364 | } |
| 365 | ], |
| 366 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 367 | 'condition': 'host_os == "win"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 368 | }, |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 369 | |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 370 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | 10d6bece | 2018-11-02 21:23:09 | [diff] [blame] | 371 | Var('chromium_git') + '/media_router.git' + '@' + '29324b698ccd8920bc81c71d42dadc6310f0ad0f', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 372 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 373 | 'src/android_webview/tools/cts_archive': { |
| 374 | 'packages': [ |
| 375 | { |
| 376 | 'package': 'chromium/android_webview/tools/cts_archive', |
Andrew Luo | 5310745b | 2019-05-24 22:46:14 | [diff] [blame] | 377 | 'version': '5-mDBex75LGRj8ezea7057l5cu4pIXy6pjgdU1X3F78C', |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 378 | }, |
| 379 | ], |
| 380 | 'condition': 'checkout_android', |
| 381 | 'dep_type': 'cipd', |
| 382 | }, |
| 383 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 384 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 385 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 386 | 'condition': 'checkout_mac', |
| 387 | }, |
| 388 | |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 389 | 'src/tools/clang/dsymutil': { |
| 390 | 'packages': [ |
| 391 | { |
| 392 | 'package': 'chromium/llvm-build-tools/dsymutil', |
Elly Fong-Jones | 3a4d4e26 | 2019-03-20 14:42:14 | [diff] [blame] | 393 | 'version': 'OWlhXkmj18li3yhJk59Kmjbc5KdgLh56TwCd1qBdzlIC', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 394 | } |
| 395 | ], |
| 396 | 'condition': 'checkout_mac', |
| 397 | 'dep_type': 'cipd', |
| 398 | }, |
| 399 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 400 | 'src/chrome/test/data/autofill/captured_sites': { |
| 401 | 'packages': [ |
| 402 | { |
| 403 | 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
Yiming Zhou | be08cbf | 2019-04-29 16:03:25 | [diff] [blame] | 404 | 'version': 'x-MlaiKZT7T-YaM3_ZEyIqsILkx9IvGpvrZHmXq0EiEC', |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 405 | } |
| 406 | ], |
| 407 | 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 408 | 'dep_type': 'cipd', |
| 409 | }, |
| 410 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 411 | 'src/chrome/test/data/password/captured_sites': { |
| 412 | 'packages': [ |
| 413 | { |
| 414 | 'package': 'chromium/chrome/test/data/password/captured_sites', |
Yiming Zhou | cfef1fe4 | 2019-04-17 12:06:34 | [diff] [blame] | 415 | 'version': 'fh4O86nUCfRN5a1Piw48cbufqayIfZQjCDbFDKXnRwEC', |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 416 | } |
| 417 | ], |
| 418 | 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 419 | 'dep_type': 'cipd', |
| 420 | }, |
| 421 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 422 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 423 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 424 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 425 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 426 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 427 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 428 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 429 | 'packages': [ |
| 430 | { |
| 431 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 432 | 'version': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 433 | }, |
| 434 | ], |
| 435 | 'condition': 'checkout_mac', |
| 436 | 'dep_type': 'cipd', |
| 437 | }, |
| 438 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 439 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 440 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 441 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 442 | 'src/ios/third_party/earl_grey/src': { |
Rohit Rao | 4660a54b | 2019-06-18 20:10:33 | [diff] [blame] | 443 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'e272bbd853eefcef4b5aeff5009d87bba5adea1c', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 444 | 'condition': 'checkout_ios', |
| 445 | }, |
| 446 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 447 | 'src/ios/third_party/earl_grey2/src': { |
Lindsay Pasricha | 0babd22 | 2019-05-24 17:52:53 | [diff] [blame] | 448 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'e3c928c5abc94848e96b52b50e5468b275769ef3', |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 449 | 'condition': 'checkout_ios', |
| 450 | }, |
| 451 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 452 | 'src/ios/third_party/edo/src': { |
Rohit Rao | 76e3f160 | 2019-03-15 02:22:48 | [diff] [blame] | 453 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '57586e7213892461228ca5543fd37f89ca0e7591', |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 454 | 'condition': 'checkout_ios', |
| 455 | }, |
| 456 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 457 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 458 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 459 | 'condition': 'checkout_ios', |
| 460 | }, |
| 461 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 462 | 'src/ios/third_party/firebase': { |
| 463 | 'packages': [ |
| 464 | { |
| 465 | 'package': 'chromium/third_party/firebase_ios', |
Peter K. Lee | 4f7d3be | 2019-03-11 18:52:09 | [diff] [blame] | 466 | 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 467 | }, |
| 468 | ], |
| 469 | 'condition': 'checkout_ios', |
| 470 | 'dep_type': 'cipd', |
| 471 | }, |
| 472 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 473 | 'src/ios/third_party/fishhook/src': { |
| 474 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 475 | 'condition': 'checkout_ios', |
| 476 | }, |
| 477 | |
| 478 | 'src/ios/third_party/gcdwebserver/src': { |
| 479 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 480 | 'condition': 'checkout_ios', |
| 481 | }, |
| 482 | |
| 483 | 'src/ios/third_party/material_components_ios/src': { |
chromium-autoroll | b86a102d | 2019-06-25 00:28:27 | [diff] [blame] | 484 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'dc0267693ad4813d4216424bdf20def3ae21bfac', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 485 | 'condition': 'checkout_ios', |
| 486 | }, |
| 487 | |
| 488 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 489 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '8e30188777b016182658fbaa0a4a020a48183224', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 490 | 'condition': 'checkout_ios', |
| 491 | }, |
| 492 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 493 | 'src/ios/third_party/material_internationalization_ios/src': { |
iOS Autoroller | e05fdaf | 2018-12-13 05:28:55 | [diff] [blame] | 494 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + 'd8f32464ac97d5551c8db19de916170ae87cfa90', |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 495 | 'condition': 'checkout_ios', |
| 496 | }, |
| 497 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 498 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
iOS Autoroller | e6956864 | 2019-04-10 22:10:09 | [diff] [blame] | 499 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + 'bc63eabbbd1e14cee0779b05827e08db2e413553', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 500 | 'condition': 'checkout_ios', |
| 501 | }, |
| 502 | |
| 503 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 504 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + '8af9adaa182044cf2920dfb620b863669e1aeb7c', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 505 | 'condition': 'checkout_ios', |
| 506 | }, |
| 507 | |
| 508 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
iOS Autoroller | efb260a | 2018-12-06 02:20:00 | [diff] [blame] | 509 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '499b45d1895b565096302a209c0c728df03b95d4', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 510 | 'condition': 'checkout_ios', |
| 511 | }, |
| 512 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 513 | 'src/ios/third_party/motion_interchange_objc/src': { |
iOS Autoroller | d5b8633f | 2019-03-08 21:07:25 | [diff] [blame] | 514 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 515 | 'condition': 'checkout_ios', |
| 516 | }, |
| 517 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 518 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 0193585 | 2019-03-12 12:33:45 | [diff] [blame] | 519 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 520 | 'condition': 'checkout_ios', |
| 521 | }, |
| 522 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 523 | 'src/ios/third_party/motion_transitioning_objc/src': { |
chromium-autoroll | c52e680 | 2019-06-26 20:47:26 | [diff] [blame] | 524 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '5bb0d577dd78472536480496ace115bc593ed0e1', |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 525 | 'condition': 'checkout_ios', |
| 526 | }, |
| 527 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 528 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 529 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 530 | 'condition': 'checkout_ios', |
| 531 | }, |
| 532 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 533 | 'src/ios/third_party/webkit/src': { |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 534 | 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + |
| 535 | '@' + Var('ios_webkit_revision'), |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 536 | 'condition': 'checkout_ios and checkout_ios_webkit' |
| 537 | }, |
| 538 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 539 | 'src/media/cdm/api': |
Xiaohan Wang | e1491e7 | 2019-06-04 02:07:50 | [diff] [blame] | 540 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'bc262e26cd2dca812f05bdad3b37398839e63007', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 541 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 542 | 'src/native_client': { |
| 543 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 544 | 'condition': 'checkout_nacl', |
| 545 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 546 | |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 547 | 'src/net/third_party/quiche/src': |
| 548 | Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| 549 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 550 | 'src/tools/luci-go': { |
| 551 | 'packages': [ |
| 552 | { |
| 553 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 554 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 555 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 556 | { |
| 557 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 558 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 559 | }, |
| 560 | { |
| 561 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 562 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 563 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 564 | ], |
| 565 | 'dep_type': 'cipd', |
| 566 | }, |
| 567 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 568 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 569 | # third_party/spirv-cross/src because its header files are at the root of |
| 570 | # the repository and dependencies include them like so: |
| 571 | # #include "spirv-cross/spirv_glsl.hpp" |
| 572 | 'src/third_party/spirv-cross/spirv-cross': |
| 573 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 574 | Var('spirv_cross_revision'), |
| 575 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 576 | 'src/third_party/spirv-headers/src': |
| 577 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 578 | Var('spv_headers_revision'), |
| 579 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 580 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 581 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 582 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 583 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 584 | 'src/third_party/shaderc/src': |
| 585 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 586 | Var('shaderc_revision'), |
| 587 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 588 | 'src/third_party/accessibility_test_framework': { |
| 589 | 'packages': [ |
| 590 | { |
| 591 | 'package': 'chromium/third_party/accessibility-test-framework', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 592 | 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 593 | }, |
| 594 | ], |
| 595 | 'condition': 'checkout_android', |
| 596 | 'dep_type': 'cipd', |
| 597 | }, |
| 598 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 599 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 600 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 601 | 'condition': 'checkout_android', |
| 602 | }, |
| 603 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 604 | 'src/third_party/android_ndk': { |
Peter Collingbourne | 69af524 | 2018-08-16 03:30:15 | [diff] [blame] | 605 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '4e2cea441bfd43f0863d14f57b1e1844260b9884', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 606 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 607 | }, |
| 608 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 609 | 'src/third_party/android_support_test_runner': { |
| 610 | 'packages': [ |
| 611 | { |
| 612 | 'package': 'chromium/third_party/android_support_test_runner', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 613 | 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 614 | }, |
| 615 | ], |
| 616 | 'condition': 'checkout_android', |
| 617 | 'dep_type': 'cipd', |
| 618 | }, |
| 619 | |
| 620 | 'src/third_party/android_system_sdk': { |
| 621 | 'packages': [ |
| 622 | { |
| 623 | 'package': 'chromium/third_party/android_system_sdk', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 624 | 'version': '0c0a94a9326c045c8aabb7fc418ea9c849b782f2', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 625 | }, |
| 626 | ], |
| 627 | 'condition': 'checkout_android', |
| 628 | 'dep_type': 'cipd', |
| 629 | }, |
| 630 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 631 | 'src/third_party/android_tools': { |
David 'Digit' Turner | 1d656f16 | 2019-02-01 20:33:48 | [diff] [blame] | 632 | 'url': Var('chromium_git') + '/android_tools.git' + '@' + '347a7c8078a009e98995985b7ab6ec6b35696dea', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 633 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 634 | }, |
| 635 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 636 | 'src/third_party/android_build_tools/aapt2': { |
| 637 | 'packages': [ |
| 638 | { |
Mohamed Heikal | 2747b4b | 2018-10-31 22:20:42 | [diff] [blame] | 639 | 'package': 'chromium/third_party/android_build_tools/aapt2', |
Mohamed Heikal | 916b04a | 2019-06-26 22:06:29 | [diff] [blame^] | 640 | 'version': 'version:3.6.0-alpha03-5516695-cr0', |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 641 | }, |
| 642 | ], |
| 643 | 'condition': 'checkout_android', |
| 644 | 'dep_type': 'cipd', |
| 645 | }, |
| 646 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 647 | 'src/third_party/android_build_tools/art': { |
| 648 | 'packages': [ |
| 649 | { |
| 650 | 'package': 'chromium/third_party/android_build_tools/art', |
| 651 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 652 | }, |
| 653 | ], |
| 654 | 'condition': 'checkout_android', |
| 655 | 'dep_type': 'cipd', |
| 656 | }, |
| 657 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 658 | 'src/third_party/android_build_tools/bundletool': { |
| 659 | 'packages': [ |
| 660 | { |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 661 | 'package': 'chromium/third_party/android_tools_bundletool', |
Mohamed Heikal | df05dd9 | 2019-06-20 21:01:39 | [diff] [blame] | 662 | 'version': 'sZ4fDz_PUiCe1yvyheO_yjeET3eVhFTFTmGaXsnrH9IC', |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 663 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 664 | ], |
| 665 | 'condition': 'checkout_android', |
| 666 | 'dep_type': 'cipd', |
| 667 | }, |
| 668 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 669 | 'src/third_party/android_sdk/public': { |
| 670 | 'packages': [ |
| 671 | { |
| 672 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 673 | 'version': Var('android_sdk_build-tools_version'), |
| 674 | }, |
| 675 | { |
| 676 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 677 | 'version': Var('android_sdk_emulator_version'), |
| 678 | }, |
| 679 | { |
| 680 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 681 | 'version': Var('android_sdk_extras_version'), |
| 682 | }, |
| 683 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 684 | 'package': 'chromium/third_party/android_sdk/public/patcher', |
| 685 | 'version': Var('android_sdk_patcher_version'), |
| 686 | }, |
| 687 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 688 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 689 | 'version': Var('android_sdk_platform-tools_version'), |
| 690 | }, |
| 691 | { |
| 692 | 'package': 'chromium/third_party/android_sdk/public/platforms', |
| 693 | 'version': Var('android_sdk_platforms_version'), |
| 694 | }, |
| 695 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 696 | 'package': 'chromium/third_party/android_sdk/public/sources', |
| 697 | 'version': Var('android_sdk_sources_version'), |
| 698 | }, |
| 699 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 700 | 'package': 'chromium/third_party/android_sdk/public/tools', |
| 701 | 'version': Var('android_sdk_tools_version'), |
| 702 | }, |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 703 | { |
| 704 | 'package': 'chromium/third_party/android_sdk/public/tools-lint', |
| 705 | 'version': Var('android_sdk_tools-lint_version'), |
| 706 | }, |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 707 | ], |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 708 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 709 | 'dep_type': 'cipd', |
| 710 | }, |
| 711 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 712 | 'src/third_party/angle': |
| 713 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 714 | |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 715 | 'src/third_party/dav1d/libdav1d': |
Dale Curtis | 6fdf9d2 | 2019-06-17 22:24:39 | [diff] [blame] | 716 | Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + 'a1e3f35842de92b526422af05360c84cf233f07f', |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 717 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 718 | 'src/third_party/dawn': |
| 719 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 720 | |
| 721 | 'src/third_party/glfw/src': |
Corentin Wallez | 3a71757 | 2018-11-19 12:37:30 | [diff] [blame] | 722 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 723 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 724 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 725 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 726 | 'condition': 'checkout_android', |
| 727 | }, |
| 728 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 729 | 'src/third_party/apk-patch-size-estimator': { |
| 730 | 'packages': [ |
| 731 | { |
| 732 | 'package': 'chromium/third_party/apk-patch-size-estimator', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 733 | 'version': 'b603e99dca9b90d6a99519c232cd811878283b08', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 734 | }, |
| 735 | ], |
| 736 | 'condition': 'checkout_android', |
| 737 | 'dep_type': 'cipd', |
| 738 | }, |
| 739 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 740 | 'src/third_party/auto/src': { |
Peter Wen | 4689398 | 2018-01-18 16:53:46 | [diff] [blame] | 741 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82', |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 742 | 'condition': 'checkout_android', |
| 743 | }, |
| 744 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 745 | 'src/third_party/bazel': { |
| 746 | 'packages': [ |
| 747 | { |
| 748 | 'package': 'chromium/third_party/bazel', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 749 | 'version': '1794576f65a721eb0af320a0701e48d31f1b2415', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 750 | }, |
| 751 | ], |
| 752 | 'condition': 'checkout_android', |
| 753 | 'dep_type': 'cipd', |
| 754 | }, |
| 755 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 756 | 'src/third_party/bison': { |
| 757 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 758 | 'condition': 'checkout_win', |
| 759 | }, |
| 760 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 761 | 'src/third_party/boringssl/src': |
| 762 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 763 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 764 | 'src/third_party/bouncycastle': { |
| 765 | 'packages': [ |
| 766 | { |
| 767 | 'package': 'chromium/third_party/bouncycastle', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 768 | 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 769 | }, |
| 770 | ], |
| 771 | 'condition': 'checkout_android', |
| 772 | 'dep_type': 'cipd', |
| 773 | }, |
| 774 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 775 | 'src/third_party/breakpad/breakpad': |
Nelson Billing | 7f99268 | 2019-06-26 01:05:14 | [diff] [blame] | 776 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'b62101dead2e9dd10e14252e8b68fbdf56bb40d2', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 777 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 778 | 'src/third_party/byte_buddy': { |
| 779 | 'packages': [ |
| 780 | { |
| 781 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 782 | 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 783 | }, |
| 784 | ], |
| 785 | 'condition': 'checkout_android', |
| 786 | 'dep_type': 'cipd', |
| 787 | }, |
| 788 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 789 | 'src/third_party/catapult': |
| 790 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 791 | |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 792 | 'src/third_party/cct_dynamic_module/src': { |
Anna Malova | 0a90106 | 2019-01-23 16:27:31 | [diff] [blame] | 793 | 'url': Var('chromium_git') + '/dynamicmodule' + '@' + '441bbbf3ab849b8816bb2c827a51df9a81b83a4f', |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 794 | 'condition': 'checkout_android', |
| 795 | }, |
| 796 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 797 | 'src/third_party/ced/src': |
Jinsuk Kim | 69fae80a | 2019-02-22 01:26:38 | [diff] [blame] | 798 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 799 | |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 800 | 'src/third_party/checkstyle': { |
| 801 | 'packages': [ |
| 802 | { |
| 803 | 'package': 'chromium/third_party/checkstyle', |
| 804 | 'version': 'y17J5dqst1qkBcbJyie8jltB2oFOgaQjFZ5k9UpbbbwC', |
| 805 | }, |
| 806 | ], |
| 807 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 808 | 'condition': 'checkout_android or checkout_linux', |
| 809 | 'dep_type': 'cipd', |
| 810 | }, |
| 811 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 812 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 813 | 'src/third_party/chromite': { |
chromium-autoroll | 1318322 | 2019-06-26 21:28:48 | [diff] [blame] | 814 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '2b2367291125b0ffb4c6ab836520307fe0c8a69d', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 815 | 'condition': 'checkout_linux', |
| 816 | }, |
| 817 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 818 | 'src/third_party/cld_3/src': |
Akihiro Ota | 1fb5ba9 | 2019-04-25 02:23:20 | [diff] [blame] | 819 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '06f695f1c8ee530104416aab5dcf2d6a1414a56a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 820 | |
| 821 | 'src/third_party/colorama/src': |
| 822 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 823 | |
| 824 | 'src/third_party/crc32c/src': |
Staphany Park | 5a0eb9a | 2019-03-02 01:39:31 | [diff] [blame] | 825 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 826 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 827 | # For Linux and Chromium OS. |
| 828 | 'src/third_party/cros_system_api': { |
Lutz Justen | 71025d36 | 2019-06-25 00:20:49 | [diff] [blame] | 829 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + '33a144a0bdb93f1440c7298b4a0fd7755dccc7b4', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 830 | 'condition': 'checkout_linux', |
| 831 | }, |
| 832 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 833 | 'src/third_party/custom_tabs_client/src': { |
Pavel Shmakov | 4ea4dac | 2019-05-30 20:46:45 | [diff] [blame] | 834 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a633542d9854151eb4f0bfd1d93da88f5934a11a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 835 | 'condition': 'checkout_android', |
| 836 | }, |
| 837 | |
| 838 | 'src/third_party/depot_tools': |
chromium-autoroll | 92e89ecd7 | 2019-06-26 21:47:25 | [diff] [blame] | 839 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '1ff9ce92d17a1e05e44b0e20f50f262a6f7738a7', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 840 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 841 | 'src/third_party/devtools-node-modules': |
| 842 | Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'), |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 843 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 844 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 845 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 846 | |
| 847 | 'src/third_party/elfutils/src': { |
| 848 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 849 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 850 | }, |
| 851 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 852 | 'src/third_party/errorprone/lib': { |
Peter Wen | a9d8462a | 2018-04-25 17:18:12 | [diff] [blame] | 853 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 854 | 'condition': 'checkout_android', |
| 855 | }, |
| 856 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 857 | 'src/third_party/espresso': { |
| 858 | 'packages': [ |
| 859 | { |
| 860 | 'package': 'chromium/third_party/espresso', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 861 | 'version': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 862 | }, |
| 863 | ], |
| 864 | 'condition': 'checkout_android', |
| 865 | 'dep_type': 'cipd', |
| 866 | }, |
| 867 | |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 868 | 'src/third_party/feed/src': { |
| 869 | 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'), |
| 870 | 'condition': 'checkout_android', |
| 871 | }, |
| 872 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 873 | 'src/third_party/ffmpeg': |
Felicia Lim | 35166ab | 2019-05-10 23:58:50 | [diff] [blame] | 874 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '68f1932090d5e35d958434d0588a33986cd3d65d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 875 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 876 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 877 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 878 | |
| 879 | 'src/third_party/flatbuffers/src': |
Nico Weber | 3d8d4b6 | 2019-02-25 21:46:43 | [diff] [blame] | 880 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '9bf9b18f0a705dfd6d50b98056463a55de6a1bf9', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 881 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 882 | # Used for embedded builds. CrOS & Linux use the system version. |
| 883 | 'src/third_party/fontconfig/src': { |
Tom Anderson | d9d67cb2 | 2018-09-13 00:46:29 | [diff] [blame] | 884 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'ba206df9b9a7ca300265f650842c1459ff7c634a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 885 | 'condition': 'checkout_linux', |
| 886 | }, |
| 887 | |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 888 | 'src/third_party/grpc/src': { |
Yuwei Huang | 2eac0bb | 2019-03-21 01:42:58 | [diff] [blame] | 889 | 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + 'b245ad4ae810ed6bc13378421edfd3986a8ffac3', |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 890 | }, |
| 891 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 892 | 'src/third_party/freetype/src': |
| 893 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 894 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 895 | 'src/third_party/harfbuzz-ng/src': |
| 896 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 897 | |
Joey Scarr | 28fc3009 | 2019-02-04 10:10:20 | [diff] [blame] | 898 | 'src/third_party/emoji-segmenter/src': |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 899 | Var('chromium_git') + '/external/github.com/googlei18n/emoji-segmenter.git' + '@' + Var('emoji_segmenter_revision'), |
| 900 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 901 | # Chrome OS touchpad gestures library. |
| 902 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 903 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 904 | 'condition': 'checkout_linux', |
| 905 | }, |
| 906 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 907 | 'src/third_party/glslang/src': |
chromium-autoroll | c742b300 | 2019-06-26 08:30:17 | [diff] [blame] | 908 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + '4162de4bbfc58ef37600c23e4e8fcf58e604f382', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 909 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 910 | 'src/third_party/google_toolbox_for_mac/src': { |
| 911 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 912 | 'condition': 'checkout_ios or checkout_mac', |
| 913 | }, |
| 914 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 915 | 'src/third_party/google-truth': { |
| 916 | 'packages': [ |
| 917 | { |
| 918 | 'package': 'chromium/third_party/google-truth', |
Gang Wu | d2b9c11 | 2019-06-06 15:24:00 | [diff] [blame] | 919 | 'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC', |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 920 | }, |
| 921 | ], |
| 922 | 'condition': 'checkout_android', |
| 923 | 'dep_type': 'cipd', |
| 924 | }, |
| 925 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 926 | 'src/third_party/googletest/src': |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 927 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 928 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 929 | # GNU binutils assembler for x86-32. |
| 930 | 'src/third_party/gnu_binutils': { |
| 931 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 932 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 933 | }, |
| 934 | |
| 935 | 'src/third_party/gperf': { |
| 936 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 937 | 'condition': 'checkout_win', |
| 938 | }, |
| 939 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 940 | 'src/third_party/gson': { |
| 941 | 'packages': [ |
| 942 | { |
| 943 | 'package': 'chromium/third_party/gson', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 944 | 'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 945 | }, |
| 946 | ], |
| 947 | 'condition': 'checkout_android', |
| 948 | 'dep_type': 'cipd', |
| 949 | }, |
| 950 | |
| 951 | 'src/third_party/guava': { |
| 952 | 'packages': [ |
| 953 | { |
| 954 | 'package': 'chromium/third_party/guava', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 955 | 'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 956 | }, |
| 957 | ], |
| 958 | 'condition': 'checkout_android', |
| 959 | 'dep_type': 'cipd', |
| 960 | }, |
| 961 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 962 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 963 | 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '233e7fe922a543e0bc55382d64cacd047307d0e7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 964 | 'condition': 'checkout_android', |
| 965 | }, |
| 966 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 967 | 'src/third_party/arcore-android-sdk/src': { |
Piotr Bialecki | 24512356 | 2019-04-05 17:45:50 | [diff] [blame] | 968 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '5b67d88f0b33edbfbe4902141ca44e750df9b6c2', |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 969 | 'condition': 'checkout_android', |
| 970 | }, |
| 971 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 972 | 'src/third_party/hamcrest': { |
| 973 | 'packages': [ |
| 974 | { |
| 975 | 'package': 'chromium/third_party/hamcrest', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 976 | 'version': '37eccfc658fe79695d6abb6dd497463c4372032f', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 977 | }, |
| 978 | ], |
| 979 | 'condition': 'checkout_android', |
| 980 | 'dep_type': 'cipd', |
| 981 | }, |
| 982 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 983 | 'src/third_party/hunspell_dictionaries': |
Guillaume Jenkins | 344017b | 2019-04-17 13:59:35 | [diff] [blame] | 984 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '3874188bd69fe67a825d07584c74451e45063e95', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 985 | |
| 986 | 'src/third_party/icu': |
Frank Tang | 958b18b | 2019-05-31 21:24:31 | [diff] [blame] | 987 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9f0f47b1e410b137762f2e3699359f0dbfcdbc05', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 988 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 989 | 'src/third_party/icu4j': { |
| 990 | 'packages': [ |
| 991 | { |
| 992 | 'package': 'chromium/third_party/icu4j', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 993 | 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 994 | }, |
| 995 | ], |
| 996 | 'condition': 'checkout_android', |
| 997 | 'dep_type': 'cipd', |
| 998 | }, |
| 999 | |
| 1000 | 'src/third_party/intellij': { |
| 1001 | 'packages': [ |
| 1002 | { |
| 1003 | 'package': 'chromium/third_party/intellij', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1004 | 'version': '77c2721b024b36ee073402c08e6d8428c0295336', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1005 | }, |
| 1006 | ], |
| 1007 | 'condition': 'checkout_android', |
| 1008 | 'dep_type': 'cipd', |
| 1009 | }, |
| 1010 | |
Ben Joyce | dde37c2 | 2019-04-12 19:36:19 | [diff] [blame] | 1011 | 'src/third_party/jacoco': { |
| 1012 | 'packages': [ |
| 1013 | { |
| 1014 | 'package': 'chromium/third_party/jacoco', |
| 1015 | 'version': 'O8mNUqIbFxvOcBsSNfbvpdUFvY4nfrPY0QA2kHoO2pQC', |
| 1016 | }, |
| 1017 | ], |
| 1018 | 'condition': 'checkout_android', |
| 1019 | 'dep_type': 'cipd', |
| 1020 | }, |
| 1021 | |
Tibor Goldschwendt | 38cc208 | 2019-06-03 21:59:28 | [diff] [blame] | 1022 | 'src/third_party/javalang/src': { |
| 1023 | 'url': Var('chromium_git') + '/external/github.com/c2nes/javalang.git' + '@' + 'f98ffcb31d1daa57fbe5bd6def8ad7c3126d8242', |
| 1024 | 'condition': 'checkout_android', |
| 1025 | }, |
| 1026 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1027 | 'src/third_party/jsoncpp/source': |
| 1028 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 1029 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1030 | 'src/third_party/jsr-305/src': { |
| 1031 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 1032 | 'condition': 'checkout_android', |
| 1033 | }, |
| 1034 | |
| 1035 | 'src/third_party/junit/src': { |
| 1036 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 1037 | 'condition': 'checkout_android', |
| 1038 | }, |
| 1039 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1040 | 'src/third_party/leveldatabase/src': |
Victor Costan | 9daa87d | 2019-05-05 23:07:39 | [diff] [blame] | 1041 | Var('chromium_git') + '/external/leveldb.git' + '@' + '4bd052d7e8b0469b2b87664388e2a99cb212ecdb', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1042 | |
| 1043 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 1044 | Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1045 | |
| 1046 | 'src/third_party/libaddressinput/src': |
Parastoo Geranmayeh | e822ba9 | 2019-04-02 14:46:43 | [diff] [blame] | 1047 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '56c60affb5de83c10ebf5f11d9adcdd70648ab71', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1048 | |
Johann | 987d153 | 2018-11-19 22:07:27 | [diff] [blame] | 1049 | 'src/third_party/libaom/source/libaom': |
Wan-Teh Chang | 594b4733 | 2019-02-13 13:46:17 | [diff] [blame] | 1050 | Var('aomedia_git') + '/aom.git' + '@' + '625cded0550bb79efd10d98a9809a7ccd72a8f60', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 1051 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1052 | # Userspace interface to kernel DRM services. |
| 1053 | 'src/third_party/libdrm/src': { |
Robert Kroeger | 43841d2 | 2018-06-01 20:48:35 | [diff] [blame] | 1054 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0061b1f244574e615c415479725046ab2951f09a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1055 | 'condition': 'checkout_linux', |
| 1056 | }, |
| 1057 | |
| 1058 | # The libevdev library (Chrome OS version). |
| 1059 | 'src/third_party/libevdev/src': { |
| 1060 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 1061 | 'condition': 'checkout_linux', |
| 1062 | }, |
| 1063 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1064 | 'src/third_party/libjpeg_turbo': |
Jonathan Wright | 6ae0f0cd | 2019-06-17 17:00:33 | [diff] [blame] | 1065 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e1669e3707c6448a01c8a0dc3e4b20976a4dacf3', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1066 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1067 | 'src/third_party/liblouis/src': { |
David Tseng | 9b9ad8e | 2019-01-09 03:40:15 | [diff] [blame] | 1068 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '97ce1c67fccbd3668291b7e63c06161c095d49f2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1069 | 'condition': 'checkout_linux', |
| 1070 | }, |
| 1071 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1072 | 'src/third_party/libphonenumber/dist': |
| 1073 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 1074 | |
| 1075 | 'src/third_party/libprotobuf-mutator/src': |
| 1076 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 1077 | |
| 1078 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 1079 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1080 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1081 | # Android Explicit Synchronization. |
| 1082 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 1083 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1084 | 'condition': 'checkout_linux', |
| 1085 | }, |
| 1086 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1087 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | ebf7647b | 2019-06-21 22:13:57 | [diff] [blame] | 1088 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '7d9288f5f86e1b0a03ae5a555dc034e7055845ca', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1089 | |
| 1090 | 'src/third_party/libwebm/source': |
James Zern | 62ef4ae | 2019-02-21 21:17:03 | [diff] [blame] | 1091 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1092 | |
| 1093 | 'src/third_party/libyuv': |
Frank Barchard | 1038c4e | 2018-10-26 01:11:50 | [diff] [blame] | 1094 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'b36c86fdfe746d7be904c3a565b047b24d58087e', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1095 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 1096 | 'src/third_party/lighttpd': { |
| 1097 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 1098 | 'condition': 'checkout_mac or checkout_win', |
| 1099 | }, |
| 1100 | |
| 1101 | 'src/third_party/lss': { |
| 1102 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 1103 | 'condition': 'checkout_android or checkout_linux', |
| 1104 | }, |
| 1105 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1106 | 'src/third_party/material_design_icons/src': { |
| 1107 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 1108 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 1109 | 'condition': 'checkout_ios', |
| 1110 | }, |
| 1111 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1112 | # GNU binutils assembler for x86-64. |
| 1113 | 'src/third_party/mingw-w64/mingw/bin': { |
| 1114 | 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1115 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1116 | }, |
| 1117 | |
| 1118 | # Graphics buffer allocator for Chrome OS. |
| 1119 | 'src/third_party/minigbm/src': { |
Maksim Sisov | dc34577 | 2019-02-20 15:43:33 | [diff] [blame] | 1120 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '4fe3038be586d5db8e44e452f5ed6a93c8ccf50a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1121 | 'condition': 'checkout_linux', |
| 1122 | }, |
| 1123 | |
| 1124 | # Minizip library. Used on Chrome OS. |
| 1125 | 'src/third_party/minizip/src': { |
Anand K. Mistry | bdd979e4 | 2018-12-17 04:38:59 | [diff] [blame] | 1126 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1127 | 'condition': 'checkout_linux', |
| 1128 | }, |
| 1129 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1130 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 1131 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1132 | 'condition': 'checkout_android', |
| 1133 | }, |
| 1134 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1135 | # Binaries for nacl sdk. |
| 1136 | 'src/third_party/nacl_sdk_binaries': { |
| 1137 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1138 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1139 | }, |
| 1140 | |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1141 | 'src/third_party/nasm': { |
| 1142 | 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
David Benjamin | b93a79d | 2019-06-25 00:10:36 | [diff] [blame] | 1143 | 'f564874f49556d930882645a348fcd6ddc6847b0' |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1144 | }, |
| 1145 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1146 | 'src/third_party/netty-tcnative/src': { |
| 1147 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 1148 | 'condition': 'checkout_android', |
| 1149 | }, |
| 1150 | |
| 1151 | 'src/third_party/netty4/src': { |
| 1152 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 1153 | 'condition': 'checkout_android', |
| 1154 | }, |
| 1155 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1156 | 'src/third_party/objenesis': { |
| 1157 | 'packages': [ |
| 1158 | { |
| 1159 | 'package': 'chromium/third_party/objenesis', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1160 | 'version': '9e367f55e5a65781ee77bfcbaa88fb82b30e75c0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1161 | }, |
| 1162 | ], |
| 1163 | 'condition': 'checkout_android', |
| 1164 | 'dep_type': 'cipd', |
| 1165 | }, |
| 1166 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1167 | 'src/third_party/openh264/src': |
Tom Anderson | f688af0 | 2018-11-29 23:45:22 | [diff] [blame] | 1168 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '6f26bce0b1c4e8ce0e13332f7c0083788def5fdf', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1169 | |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1170 | 'src/third_party/openscreen/src': |
Jordan Bayles | ddc2a2d | 2019-06-04 23:43:21 | [diff] [blame] | 1171 | Var('chromium_git') + '/openscreen' + '@' + 'd384da5a955f7594615ae49b5f624cb135d0cb01', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1172 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1173 | 'src/third_party/openxr/src': { |
| 1174 | 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + 'c52d3b40dd802353c1f2ceec139922b374c1373a', |
| 1175 | 'condition': 'checkout_openxr', |
| 1176 | }, |
| 1177 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1178 | 'src/third_party/ow2_asm': { |
| 1179 | 'packages': [ |
| 1180 | { |
| 1181 | 'package': 'chromium/third_party/ow2_asm', |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1182 | 'version': 'NNAhdJzMdnutUVqfSJm5v0tVazA9l3Dd6CRwH6N4Q5kC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1183 | }, |
| 1184 | ], |
| 1185 | 'condition': 'checkout_android', |
| 1186 | 'dep_type': 'cipd', |
| 1187 | }, |
| 1188 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1189 | 'src/third_party/pdfium': |
| 1190 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 1191 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1192 | # Parses Windows PE/COFF executable format. |
| 1193 | 'src/third_party/pefile': { |
| 1194 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1195 | 'condition': 'checkout_win', |
| 1196 | }, |
| 1197 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1198 | 'src/third_party/perfetto': |
chromium-autoroll | bef4d2e2 | 2019-06-26 19:37:54 | [diff] [blame] | 1199 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '02f19d2102abcb646c2941f1566afaf16d766850', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1200 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1201 | 'src/third_party/perl': { |
Robert Ma | 3deb10c | 2019-06-05 15:23:29 | [diff] [blame] | 1202 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1203 | 'condition': 'checkout_win', |
| 1204 | }, |
| 1205 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1206 | 'src/third_party/proguard': { |
| 1207 | 'packages': [ |
| 1208 | { |
| 1209 | 'package': 'chromium/third_party/proguard', |
| 1210 | 'version': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca', |
| 1211 | }, |
| 1212 | ], |
| 1213 | 'condition': 'checkout_android', |
| 1214 | 'dep_type': 'cipd', |
| 1215 | }, |
| 1216 | |
Mohamed Heikal | 5c48859 | 2018-11-26 23:32:15 | [diff] [blame] | 1217 | 'src/third_party/protoc_javalite': { |
| 1218 | 'packages': [ |
| 1219 | { |
| 1220 | 'package': 'chromium/third_party/protoc_javalite', |
| 1221 | 'version': 'version:3.0.0-cr1', |
| 1222 | }, |
| 1223 | ], |
| 1224 | 'condition': 'checkout_android', |
| 1225 | 'dep_type': 'cipd', |
| 1226 | }, |
| 1227 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1228 | # Dependency of chromite.git and skia. |
| 1229 | 'src/third_party/pyelftools': { |
| 1230 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1231 | 'condition': 'checkout_linux', |
| 1232 | }, |
| 1233 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1234 | 'src/third_party/quic_trace/src': |
Bence Béky | 3e38655 | 2019-04-29 23:44:46 | [diff] [blame] | 1235 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + '8415c22f0ca2485bd8a16eff64075f4361f3878e', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1236 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1237 | 'src/third_party/pywebsocket/src': |
| 1238 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 1239 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1240 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1241 | 'packages': [ |
| 1242 | { |
| 1243 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1244 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1245 | }, |
| 1246 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1247 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1248 | 'dep_type': 'cipd', |
| 1249 | }, |
| 1250 | |
| 1251 | 'src/third_party/qemu-mac-x64': { |
| 1252 | 'packages': [ |
| 1253 | { |
| 1254 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1255 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1256 | }, |
| 1257 | ], |
| 1258 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1259 | 'dep_type': 'cipd', |
| 1260 | }, |
| 1261 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1262 | 'src/third_party/re2/src': |
Paul Wankadia | e104888 | 2019-06-14 13:31:36 | [diff] [blame] | 1263 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '848dfb7e1d7ba641d598cb66f81590f3999a555a', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1264 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1265 | 'src/third_party/r8': { |
| 1266 | 'packages': [ |
| 1267 | { |
| 1268 | 'package': 'chromium/third_party/r8', |
Sam Maier | 5380288 | 2019-05-17 18:48:59 | [diff] [blame] | 1269 | 'version': 'jfE9VkwFvzhAgaBwY40d5HnUk_gcPl8H5vqsTQtb7DYC', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1270 | }, |
| 1271 | ], |
| 1272 | 'condition': 'checkout_android', |
| 1273 | 'dep_type': 'cipd', |
| 1274 | }, |
| 1275 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1276 | 'src/third_party/requests/src': { |
| 1277 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1278 | 'condition': 'checkout_android', |
| 1279 | }, |
| 1280 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1281 | 'src/third_party/robolectric': { |
| 1282 | 'packages': [ |
| 1283 | { |
| 1284 | 'package': 'chromium/third_party/robolectric', |
Sam Maier | f756b38 | 2019-05-17 19:23:24 | [diff] [blame] | 1285 | 'version': '1KXoOiNP1a_uZNdM2ybWKwAQNow1dHTXTig-ZK4Xgq8C', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1286 | }, |
| 1287 | ], |
| 1288 | 'condition': 'checkout_android', |
| 1289 | 'dep_type': 'cipd', |
| 1290 | }, |
| 1291 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1292 | 'src/third_party/robolectric/robolectric': { |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1293 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '3d6dcabf5521e028c8efc2778ab6bd8c7b6d923c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1294 | 'condition': 'checkout_android', |
| 1295 | }, |
| 1296 | |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1297 | 'src/third_party/androidx': { |
| 1298 | 'packages': [ |
| 1299 | { |
| 1300 | 'package': 'chromium/third_party/androidx', |
| 1301 | 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| 1302 | }, |
| 1303 | ], |
| 1304 | 'condition': 'checkout_android', |
| 1305 | 'dep_type': 'cipd', |
| 1306 | }, |
| 1307 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1308 | 'src/third_party/sfntly/src': |
| 1309 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
| 1310 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1311 | 'src/third_party/skia': |
| 1312 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1313 | |
| 1314 | 'src/third_party/smhasher/src': |
| 1315 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1316 | |
| 1317 | 'src/third_party/snappy/src': |
Victor Costan | 2e0948d | 2019-01-09 19:21:24 | [diff] [blame] | 1318 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + '3f194acb57e0487531c96b97af61dcbd025a78a3', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1319 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1320 | 'src/third_party/sqlite4java': { |
| 1321 | 'packages': [ |
| 1322 | { |
| 1323 | 'package': 'chromium/third_party/sqlite4java', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1324 | 'version': '889660698187baa7c8b0d79f7bf58563125fbd66', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1325 | }, |
| 1326 | ], |
| 1327 | 'condition': 'checkout_android', |
| 1328 | 'dep_type': 'cipd', |
| 1329 | }, |
| 1330 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1331 | 'src/third_party/swiftshader': |
| 1332 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1333 | |
| 1334 | 'src/third_party/ub-uiautomator/lib': { |
| 1335 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1336 | 'condition': 'checkout_android', |
| 1337 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1338 | |
| 1339 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 462adb2 | 2018-06-25 18:56:57 | [diff] [blame] | 1340 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7a8bc9a90ca96634aa56ee712856d97f27d903f8', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1341 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1342 | # Display server protocol for Linux. |
| 1343 | 'src/third_party/wayland/src': { |
| 1344 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 1345 | 'condition': 'checkout_linux', |
| 1346 | }, |
| 1347 | |
| 1348 | # Wayland protocols that add functionality not available in the core protocol. |
| 1349 | 'src/third_party/wayland-protocols/src': { |
Alexandros Frantzis | e05fa0a | 2019-01-15 05:17:12 | [diff] [blame] | 1350 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '57423eac60cc234ebfad15f394488a47f69afe16', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1351 | 'condition': 'checkout_linux', |
| 1352 | }, |
| 1353 | |
| 1354 | # Wireless Display Software. Used on Chrome OS. |
| 1355 | 'src/third_party/wds/src': { |
| 1356 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1357 | 'condition': 'checkout_linux', |
| 1358 | }, |
| 1359 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1360 | 'src/third_party/webdriver/pylib': |
Aaron Gable | 5a63017 | 2019-04-30 20:59:01 | [diff] [blame] | 1361 | Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'd0045ec570c1a77612db35d1e92f05e1d27b4d53', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1362 | |
| 1363 | 'src/third_party/webgl/src': |
shrekshao | 5ceff28f | 2019-04-24 20:43:22 | [diff] [blame] | 1364 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '6f0b34abee8dba611c253738d955c59f703c147a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1365 | |
| 1366 | 'src/third_party/webrtc': |
chromium-autoroll | 9a177d4 | 2019-06-26 20:11:29 | [diff] [blame] | 1367 | Var('webrtc_git') + '/src.git' + '@' + '4d6951669cd85e1d5bd66ba6643d4bdc1f6cce4b', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1368 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1369 | 'src/third_party/xdg-utils': { |
| 1370 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1371 | 'condition': 'checkout_linux', |
| 1372 | }, |
| 1373 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1374 | 'src/third_party/xstream': { |
| 1375 | 'packages': [ |
| 1376 | { |
| 1377 | 'package': 'chromium/third_party/xstream', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1378 | 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1379 | }, |
| 1380 | ], |
| 1381 | 'condition': 'checkout_android', |
| 1382 | 'dep_type': 'cipd', |
| 1383 | }, |
| 1384 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1385 | 'src/third_party/yasm/source/patched-yasm': |
Mostyn Bramley-Moore | 2be9a9d0 | 2018-07-07 00:35:17 | [diff] [blame] | 1386 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1387 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1388 | 'src/tools/page_cycler/acid3': |
| 1389 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1390 | |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1391 | 'src/tools/skia_goldctl': { |
| 1392 | 'packages': [ |
| 1393 | { |
| 1394 | 'package': 'skia/tools/goldctl/${{platform}}', |
Brian Sheedy | 547cf77 | 2019-06-17 20:42:55 | [diff] [blame] | 1395 | 'version': 'git_revision:c5ecc324a08216bb365e058acceaf070ce0501c7', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1396 | }, |
| 1397 | ], |
| 1398 | 'dep_type': 'cipd', |
| 1399 | }, |
| 1400 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1401 | 'src/tools/swarming_client': |
| 1402 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1403 | |
| 1404 | 'src/v8': |
| 1405 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1406 | |
| 1407 | 'src-internal': { |
chromium-internal-autoroll | 1f85d0f | 2019-06-26 22:05:27 | [diff] [blame] | 1408 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@b46998c50dd470705696d635d3d1f80c99ebae82', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1409 | 'condition': 'checkout_src_internal', |
| 1410 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1411 | |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1412 | 'src/third_party/google_android_play_core': { |
| 1413 | 'packages': [ |
| 1414 | { |
| 1415 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
Tibor Goldschwendt | b7bd4ca | 2019-04-02 18:12:58 | [diff] [blame] | 1416 | 'version': 'sPjmEe18bOaRHsFxIEohCPLEibGhrlFv-_ZcpEywt7YC', |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1417 | }, |
| 1418 | ], |
| 1419 | 'condition': 'checkout_android', |
| 1420 | 'dep_type': 'cipd', |
| 1421 | }, |
| 1422 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1423 | # === ANDROID_DEPS Generated Code Start === |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1424 | # Generated by //tools/android/roll/android_deps/fetch_all.py |
| 1425 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1426 | 'packages': [ |
| 1427 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1428 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1429 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1430 | }, |
| 1431 | ], |
| 1432 | 'condition': 'checkout_android', |
| 1433 | 'dep_type': 'cipd', |
| 1434 | }, |
| 1435 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1436 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1437 | 'packages': [ |
| 1438 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1439 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1440 | 'version': 'version:1.1.1-cr0', |
| 1441 | }, |
| 1442 | ], |
| 1443 | 'condition': 'checkout_android', |
| 1444 | 'dep_type': 'cipd', |
| 1445 | }, |
| 1446 | |
| 1447 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common_java8': { |
| 1448 | 'packages': [ |
| 1449 | { |
| 1450 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8', |
| 1451 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1452 | }, |
| 1453 | ], |
| 1454 | 'condition': 'checkout_android', |
| 1455 | 'dep_type': 'cipd', |
| 1456 | }, |
| 1457 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1458 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1459 | 'packages': [ |
| 1460 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1461 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1462 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1463 | }, |
| 1464 | ], |
| 1465 | 'condition': 'checkout_android', |
| 1466 | 'dep_type': 'cipd', |
| 1467 | }, |
| 1468 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1469 | 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 1470 | 'packages': [ |
| 1471 | { |
| 1472 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
| 1473 | 'version': 'version:1.0.0-cr0', |
| 1474 | }, |
| 1475 | ], |
| 1476 | 'condition': 'checkout_android', |
| 1477 | 'dep_type': 'cipd', |
| 1478 | }, |
| 1479 | |
| 1480 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 1481 | 'packages': [ |
| 1482 | { |
| 1483 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
| 1484 | 'version': 'version:2.0.0-cr0', |
| 1485 | }, |
| 1486 | ], |
| 1487 | 'condition': 'checkout_android', |
| 1488 | 'dep_type': 'cipd', |
| 1489 | }, |
| 1490 | |
| 1491 | 'src/third_party/android_deps/libs/androidx_test_core': { |
| 1492 | 'packages': [ |
| 1493 | { |
| 1494 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
| 1495 | 'version': 'version:1.0.0-cr0', |
| 1496 | }, |
| 1497 | ], |
| 1498 | 'condition': 'checkout_android', |
| 1499 | 'dep_type': 'cipd', |
| 1500 | }, |
| 1501 | |
| 1502 | 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 1503 | 'packages': [ |
| 1504 | { |
| 1505 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
| 1506 | 'version': 'version:1.0.0-cr0', |
| 1507 | }, |
| 1508 | ], |
| 1509 | 'condition': 'checkout_android', |
| 1510 | 'dep_type': 'cipd', |
| 1511 | }, |
| 1512 | |
| 1513 | 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 1514 | 'packages': [ |
| 1515 | { |
| 1516 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
| 1517 | 'version': 'version:1.1.0-cr0', |
| 1518 | }, |
| 1519 | ], |
| 1520 | 'condition': 'checkout_android', |
| 1521 | 'dep_type': 'cipd', |
| 1522 | }, |
| 1523 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 1524 | 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 1525 | 'packages': [ |
| 1526 | { |
| 1527 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
| 1528 | 'version': 'version:1.1.0-cr0', |
| 1529 | }, |
| 1530 | ], |
| 1531 | 'condition': 'checkout_android', |
| 1532 | 'dep_type': 'cipd', |
| 1533 | }, |
| 1534 | |
| 1535 | 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 1536 | 'packages': [ |
| 1537 | { |
| 1538 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
| 1539 | 'version': 'version:1.1.0-cr0', |
| 1540 | }, |
| 1541 | ], |
| 1542 | 'condition': 'checkout_android', |
| 1543 | 'dep_type': 'cipd', |
| 1544 | }, |
| 1545 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1546 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1547 | 'packages': [ |
| 1548 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1549 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
| 1550 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1551 | }, |
| 1552 | ], |
| 1553 | 'condition': 'checkout_android', |
| 1554 | 'dep_type': 'cipd', |
| 1555 | }, |
| 1556 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1557 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1558 | 'packages': [ |
| 1559 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1560 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
| 1561 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1562 | }, |
| 1563 | ], |
| 1564 | 'condition': 'checkout_android', |
| 1565 | 'dep_type': 'cipd', |
| 1566 | }, |
| 1567 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1568 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1569 | 'packages': [ |
| 1570 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1571 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
| 1572 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1573 | }, |
| 1574 | ], |
| 1575 | 'condition': 'checkout_android', |
| 1576 | 'dep_type': 'cipd', |
| 1577 | }, |
| 1578 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1579 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1580 | 'packages': [ |
| 1581 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1582 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
| 1583 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1584 | }, |
| 1585 | ], |
| 1586 | 'condition': 'checkout_android', |
| 1587 | 'dep_type': 'cipd', |
| 1588 | }, |
| 1589 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1590 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1591 | 'packages': [ |
| 1592 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1593 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
| 1594 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1595 | }, |
| 1596 | ], |
| 1597 | 'condition': 'checkout_android', |
| 1598 | 'dep_type': 'cipd', |
| 1599 | }, |
| 1600 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1601 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1602 | 'packages': [ |
| 1603 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1604 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
| 1605 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1606 | }, |
| 1607 | ], |
| 1608 | 'condition': 'checkout_android', |
| 1609 | 'dep_type': 'cipd', |
| 1610 | }, |
| 1611 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1612 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1613 | 'packages': [ |
| 1614 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1615 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
| 1616 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1617 | }, |
| 1618 | ], |
| 1619 | 'condition': 'checkout_android', |
| 1620 | 'dep_type': 'cipd', |
| 1621 | }, |
| 1622 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1623 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1624 | 'packages': [ |
| 1625 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1626 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 1627 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1628 | }, |
| 1629 | ], |
| 1630 | 'condition': 'checkout_android', |
| 1631 | 'dep_type': 'cipd', |
| 1632 | }, |
| 1633 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1634 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1635 | 'packages': [ |
| 1636 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1637 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
| 1638 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1639 | }, |
| 1640 | ], |
| 1641 | 'condition': 'checkout_android', |
| 1642 | 'dep_type': 'cipd', |
| 1643 | }, |
| 1644 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1645 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1646 | 'packages': [ |
| 1647 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1648 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
| 1649 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1650 | }, |
| 1651 | ], |
| 1652 | 'condition': 'checkout_android', |
| 1653 | 'dep_type': 'cipd', |
| 1654 | }, |
| 1655 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1656 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1657 | 'packages': [ |
| 1658 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1659 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
| 1660 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1661 | }, |
| 1662 | ], |
| 1663 | 'condition': 'checkout_android', |
| 1664 | 'dep_type': 'cipd', |
| 1665 | }, |
| 1666 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1667 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1668 | 'packages': [ |
| 1669 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1670 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
| 1671 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1672 | }, |
| 1673 | ], |
| 1674 | 'condition': 'checkout_android', |
| 1675 | 'dep_type': 'cipd', |
| 1676 | }, |
| 1677 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1678 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1679 | 'packages': [ |
| 1680 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1681 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
| 1682 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1683 | }, |
| 1684 | ], |
| 1685 | 'condition': 'checkout_android', |
| 1686 | 'dep_type': 'cipd', |
| 1687 | }, |
| 1688 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1689 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1690 | 'packages': [ |
| 1691 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1692 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
| 1693 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1694 | }, |
| 1695 | ], |
| 1696 | 'condition': 'checkout_android', |
| 1697 | 'dep_type': 'cipd', |
| 1698 | }, |
| 1699 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1700 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1701 | 'packages': [ |
| 1702 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1703 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
| 1704 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1705 | }, |
| 1706 | ], |
| 1707 | 'condition': 'checkout_android', |
| 1708 | 'dep_type': 'cipd', |
| 1709 | }, |
| 1710 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1711 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1712 | 'packages': [ |
| 1713 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1714 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
| 1715 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1716 | }, |
| 1717 | ], |
| 1718 | 'condition': 'checkout_android', |
| 1719 | 'dep_type': 'cipd', |
| 1720 | }, |
| 1721 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1722 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1723 | 'packages': [ |
| 1724 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1725 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
| 1726 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1727 | }, |
| 1728 | ], |
| 1729 | 'condition': 'checkout_android', |
| 1730 | 'dep_type': 'cipd', |
| 1731 | }, |
| 1732 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1733 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1734 | 'packages': [ |
| 1735 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1736 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
| 1737 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1738 | }, |
| 1739 | ], |
| 1740 | 'condition': 'checkout_android', |
| 1741 | 'dep_type': 'cipd', |
| 1742 | }, |
| 1743 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1744 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1745 | 'packages': [ |
| 1746 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1747 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
| 1748 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1749 | }, |
| 1750 | ], |
| 1751 | 'condition': 'checkout_android', |
| 1752 | 'dep_type': 'cipd', |
| 1753 | }, |
| 1754 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1755 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1756 | 'packages': [ |
| 1757 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1758 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
| 1759 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1760 | }, |
| 1761 | ], |
| 1762 | 'condition': 'checkout_android', |
| 1763 | 'dep_type': 'cipd', |
| 1764 | }, |
| 1765 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1766 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1767 | 'packages': [ |
| 1768 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1769 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
| 1770 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1771 | }, |
| 1772 | ], |
| 1773 | 'condition': 'checkout_android', |
| 1774 | 'dep_type': 'cipd', |
| 1775 | }, |
| 1776 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1777 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1778 | 'packages': [ |
| 1779 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1780 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
| 1781 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1782 | }, |
| 1783 | ], |
| 1784 | 'condition': 'checkout_android', |
| 1785 | 'dep_type': 'cipd', |
| 1786 | }, |
| 1787 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1788 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1789 | 'packages': [ |
| 1790 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1791 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
| 1792 | 'version': 'version:27.0.0-cr0', |
| 1793 | }, |
| 1794 | ], |
| 1795 | 'condition': 'checkout_android', |
| 1796 | 'dep_type': 'cipd', |
| 1797 | }, |
| 1798 | |
| 1799 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 1800 | 'packages': [ |
| 1801 | { |
| 1802 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1803 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1804 | }, |
| 1805 | ], |
| 1806 | 'condition': 'checkout_android', |
| 1807 | 'dep_type': 'cipd', |
| 1808 | }, |
| 1809 | |
| 1810 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 1811 | 'packages': [ |
| 1812 | { |
| 1813 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1814 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1815 | }, |
| 1816 | ], |
| 1817 | 'condition': 'checkout_android', |
| 1818 | 'dep_type': 'cipd', |
| 1819 | }, |
| 1820 | |
| 1821 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 1822 | 'packages': [ |
| 1823 | { |
| 1824 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1825 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1826 | }, |
| 1827 | ], |
| 1828 | 'condition': 'checkout_android', |
| 1829 | 'dep_type': 'cipd', |
| 1830 | }, |
| 1831 | |
| 1832 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 1833 | 'packages': [ |
| 1834 | { |
| 1835 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_base', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1836 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1837 | }, |
| 1838 | ], |
| 1839 | 'condition': 'checkout_android', |
| 1840 | 'dep_type': 'cipd', |
| 1841 | }, |
| 1842 | |
| 1843 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 1844 | 'packages': [ |
| 1845 | { |
| 1846 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_basement', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1847 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1848 | }, |
| 1849 | ], |
| 1850 | 'condition': 'checkout_android', |
| 1851 | 'dep_type': 'cipd', |
| 1852 | }, |
| 1853 | |
| 1854 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 1855 | 'packages': [ |
| 1856 | { |
| 1857 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast', |
Peter Wen | 2741204b | 2018-08-20 18:45:34 | [diff] [blame] | 1858 | 'version': 'version:16.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1859 | }, |
| 1860 | ], |
| 1861 | 'condition': 'checkout_android', |
| 1862 | 'dep_type': 'cipd', |
| 1863 | }, |
| 1864 | |
| 1865 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 1866 | 'packages': [ |
| 1867 | { |
| 1868 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework', |
Peter Wen | 2741204b | 2018-08-20 18:45:34 | [diff] [blame] | 1869 | 'version': 'version:16.0.1-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1870 | }, |
| 1871 | ], |
| 1872 | 'condition': 'checkout_android', |
| 1873 | 'dep_type': 'cipd', |
| 1874 | }, |
| 1875 | |
| 1876 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 1877 | 'packages': [ |
| 1878 | { |
| 1879 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
| 1880 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1881 | }, |
| 1882 | ], |
| 1883 | 'condition': 'checkout_android', |
| 1884 | 'dep_type': 'cipd', |
| 1885 | }, |
| 1886 | |
| 1887 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 1888 | 'packages': [ |
| 1889 | { |
| 1890 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_fido', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1891 | 'version': 'version:15.0.1-cr0', |
| 1892 | }, |
| 1893 | ], |
| 1894 | 'condition': 'checkout_android', |
| 1895 | 'dep_type': 'cipd', |
| 1896 | }, |
| 1897 | |
| 1898 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 1899 | 'packages': [ |
| 1900 | { |
| 1901 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
| 1902 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1903 | }, |
| 1904 | ], |
| 1905 | 'condition': 'checkout_android', |
| 1906 | 'dep_type': 'cipd', |
| 1907 | }, |
| 1908 | |
| 1909 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 1910 | 'packages': [ |
| 1911 | { |
| 1912 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_gcm', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1913 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1914 | }, |
| 1915 | ], |
| 1916 | 'condition': 'checkout_android', |
| 1917 | 'dep_type': 'cipd', |
| 1918 | }, |
| 1919 | |
| 1920 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 1921 | 'packages': [ |
| 1922 | { |
| 1923 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_iid', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1924 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1925 | }, |
| 1926 | ], |
| 1927 | 'condition': 'checkout_android', |
| 1928 | 'dep_type': 'cipd', |
| 1929 | }, |
| 1930 | |
| 1931 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 1932 | 'packages': [ |
| 1933 | { |
| 1934 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps', |
Peter Wen | 2741204b | 2018-08-20 18:45:34 | [diff] [blame] | 1935 | 'version': 'version:16.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1936 | }, |
| 1937 | ], |
| 1938 | 'condition': 'checkout_android', |
| 1939 | 'dep_type': 'cipd', |
| 1940 | }, |
| 1941 | |
| 1942 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 1943 | 'packages': [ |
| 1944 | { |
| 1945 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_location', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1946 | 'version': 'version:15.0.1-cr0', |
| 1947 | }, |
| 1948 | ], |
| 1949 | 'condition': 'checkout_android', |
| 1950 | 'dep_type': 'cipd', |
| 1951 | }, |
| 1952 | |
| 1953 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 1954 | 'packages': [ |
| 1955 | { |
| 1956 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
| 1957 | 'version': 'version:15.0.1-cr0', |
| 1958 | }, |
| 1959 | ], |
| 1960 | 'condition': 'checkout_android', |
| 1961 | 'dep_type': 'cipd', |
| 1962 | }, |
| 1963 | |
| 1964 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 1965 | 'packages': [ |
| 1966 | { |
| 1967 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
| 1968 | 'version': 'version:15.0.1-cr0', |
| 1969 | }, |
| 1970 | ], |
| 1971 | 'condition': 'checkout_android', |
| 1972 | 'dep_type': 'cipd', |
| 1973 | }, |
| 1974 | |
| 1975 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 1976 | 'packages': [ |
| 1977 | { |
| 1978 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
| 1979 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1980 | }, |
| 1981 | ], |
| 1982 | 'condition': 'checkout_android', |
| 1983 | 'dep_type': 'cipd', |
| 1984 | }, |
| 1985 | |
| 1986 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 1987 | 'packages': [ |
| 1988 | { |
| 1989 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_tasks', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1990 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1991 | }, |
| 1992 | ], |
| 1993 | 'condition': 'checkout_android', |
| 1994 | 'dep_type': 'cipd', |
| 1995 | }, |
| 1996 | |
| 1997 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 1998 | 'packages': [ |
| 1999 | { |
| 2000 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2001 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2002 | }, |
| 2003 | ], |
| 2004 | 'condition': 'checkout_android', |
| 2005 | 'dep_type': 'cipd', |
| 2006 | }, |
| 2007 | |
| 2008 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 2009 | 'packages': [ |
| 2010 | { |
| 2011 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2012 | 'version': 'version:15.0.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2013 | }, |
| 2014 | ], |
| 2015 | 'condition': 'checkout_android', |
| 2016 | 'dep_type': 'cipd', |
| 2017 | }, |
| 2018 | |
Piotr Bialecki | b1afbb9 | 2018-12-10 22:43:55 | [diff] [blame] | 2019 | 'src/third_party/android_deps/libs/com_google_ar_core': { |
| 2020 | 'packages': [ |
| 2021 | { |
| 2022 | 'package': 'chromium/third_party/android_deps/libs/com_google_ar_core', |
Harsh Patel | 212f516 | 2019-06-13 13:27:55 | [diff] [blame] | 2023 | 'version': '4_5y1Cw_L1MHu3UedmkavqbZ7H7sYPBTdpcAOJQvlXkC', |
Piotr Bialecki | b1afbb9 | 2018-12-10 22:43:55 | [diff] [blame] | 2024 | }, |
| 2025 | ], |
| 2026 | 'condition': 'checkout_android', |
| 2027 | 'dep_type': 'cipd', |
| 2028 | }, |
| 2029 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2030 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 2031 | 'packages': [ |
| 2032 | { |
| 2033 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 2034 | 'version': 'version:1.3.9-cr0', |
| 2035 | }, |
| 2036 | ], |
| 2037 | 'condition': 'checkout_android', |
| 2038 | 'dep_type': 'cipd', |
| 2039 | }, |
| 2040 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2041 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 2042 | 'packages': [ |
| 2043 | { |
| 2044 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 2045 | 'version': 'version:2.17-cr0', |
| 2046 | }, |
| 2047 | ], |
| 2048 | 'condition': 'checkout_android', |
| 2049 | 'dep_type': 'cipd', |
| 2050 | }, |
| 2051 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2052 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 2053 | 'packages': [ |
| 2054 | { |
| 2055 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 2056 | 'version': 'version:2.17-cr0', |
| 2057 | }, |
| 2058 | ], |
| 2059 | 'condition': 'checkout_android', |
| 2060 | 'dep_type': 'cipd', |
| 2061 | }, |
| 2062 | |
| 2063 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 2064 | 'packages': [ |
| 2065 | { |
| 2066 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 2067 | 'version': 'version:2.17-cr0', |
| 2068 | }, |
| 2069 | ], |
| 2070 | 'condition': 'checkout_android', |
| 2071 | 'dep_type': 'cipd', |
| 2072 | }, |
| 2073 | |
| 2074 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2075 | 'packages': [ |
| 2076 | { |
| 2077 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 2078 | 'version': 'version:2.17-cr0', |
| 2079 | }, |
| 2080 | ], |
| 2081 | 'condition': 'checkout_android', |
| 2082 | 'dep_type': 'cipd', |
| 2083 | }, |
| 2084 | |
| 2085 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 2086 | 'packages': [ |
| 2087 | { |
| 2088 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
| 2089 | 'version': 'version:2.1.3-cr0', |
| 2090 | }, |
| 2091 | ], |
| 2092 | 'condition': 'checkout_android', |
| 2093 | 'dep_type': 'cipd', |
| 2094 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2095 | |
| 2096 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 2097 | 'packages': [ |
| 2098 | { |
| 2099 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 2100 | 'version': 'version:9-dev-r4023-3-cr0', |
| 2101 | }, |
| 2102 | ], |
| 2103 | 'condition': 'checkout_android', |
| 2104 | 'dep_type': 'cipd', |
| 2105 | }, |
| 2106 | |
| 2107 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 2108 | 'packages': [ |
| 2109 | { |
| 2110 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 2111 | 'version': 'version:1.5-cr0', |
| 2112 | }, |
| 2113 | ], |
| 2114 | 'condition': 'checkout_android', |
| 2115 | 'dep_type': 'cipd', |
| 2116 | }, |
| 2117 | |
| 2118 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 2119 | 'packages': [ |
| 2120 | { |
| 2121 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2122 | 'version': 'version:25.0-jre-cr0', |
| 2123 | }, |
| 2124 | ], |
| 2125 | 'condition': 'checkout_android', |
| 2126 | 'dep_type': 'cipd', |
| 2127 | }, |
| 2128 | |
| 2129 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 2130 | 'packages': [ |
| 2131 | { |
| 2132 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 2133 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2134 | }, |
| 2135 | ], |
| 2136 | 'condition': 'checkout_android', |
| 2137 | 'dep_type': 'cipd', |
| 2138 | }, |
| 2139 | |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 2140 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_lite': { |
| 2141 | 'packages': [ |
| 2142 | { |
| 2143 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_lite', |
| 2144 | 'version': 'version:3.0.1-cr0', |
| 2145 | }, |
| 2146 | ], |
| 2147 | 'condition': 'checkout_android', |
| 2148 | 'dep_type': 'cipd', |
| 2149 | }, |
| 2150 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2151 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 2152 | 'packages': [ |
| 2153 | { |
| 2154 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
| 2155 | 'version': 'version:1.11.0-cr0', |
| 2156 | }, |
| 2157 | ], |
| 2158 | 'condition': 'checkout_android', |
| 2159 | 'dep_type': 'cipd', |
| 2160 | }, |
| 2161 | |
| 2162 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 2163 | 'packages': [ |
| 2164 | { |
| 2165 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 2166 | 'version': 'version:1.0-cr0', |
| 2167 | }, |
| 2168 | ], |
| 2169 | 'condition': 'checkout_android', |
| 2170 | 'dep_type': 'cipd', |
| 2171 | }, |
| 2172 | |
| 2173 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2174 | 'packages': [ |
| 2175 | { |
| 2176 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 2177 | 'version': 'version:1-cr0', |
| 2178 | }, |
| 2179 | ], |
| 2180 | 'condition': 'checkout_android', |
| 2181 | 'dep_type': 'cipd', |
| 2182 | }, |
| 2183 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2184 | 'src/third_party/android_deps/libs/net_sf_kxml_kxml2': { |
| 2185 | 'packages': [ |
| 2186 | { |
| 2187 | 'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2', |
| 2188 | 'version': 'version:2.3.0-cr0', |
| 2189 | }, |
| 2190 | ], |
| 2191 | 'condition': 'checkout_android', |
| 2192 | 'dep_type': 'cipd', |
| 2193 | }, |
| 2194 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2195 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 2196 | 'packages': [ |
| 2197 | { |
| 2198 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
| 2199 | 'version': 'version:2.3.0-cr0', |
| 2200 | }, |
| 2201 | ], |
| 2202 | 'condition': 'checkout_android', |
| 2203 | 'dep_type': 'cipd', |
| 2204 | }, |
| 2205 | |
| 2206 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 2207 | 'packages': [ |
| 2208 | { |
| 2209 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
| 2210 | 'version': 'version:1.14-cr0', |
| 2211 | }, |
| 2212 | ], |
| 2213 | 'condition': 'checkout_android', |
| 2214 | 'dep_type': 'cipd', |
| 2215 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2216 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 2217 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2218 | } |
| 2219 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 2220 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2221 | include_rules = [ |
| 2222 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2223 | # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2224 | '+base', |
| 2225 | '+build', |
| 2226 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2227 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2228 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2229 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2230 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2231 | '+testing', |
| 2232 | '+third_party/icu/source/common/unicode', |
| 2233 | '+third_party/icu/source/i18n/unicode', |
| 2234 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2235 | |
| 2236 | # Chromium cannot directly depend on Abseil. |
| 2237 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2238 | ] |
| 2239 | |
| 2240 | |
| 2241 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 2242 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2243 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2244 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2245 | 'skia', |
| 2246 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2247 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2248 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2249 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 2250 | |
| 2251 | |
| 2252 | hooks = [ |
| 2253 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2254 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 2255 | # first hook so that other things that get/generate into the output |
| 2256 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2257 | 'name': 'landmines', |
| 2258 | 'pattern': '.', |
| 2259 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2260 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2261 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2262 | ], |
| 2263 | }, |
| 2264 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2265 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 2266 | # disabled. |
| 2267 | 'name': 'disable_depot_tools_selfupdate', |
| 2268 | 'pattern': '.', |
| 2269 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2270 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2271 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 2272 | '--disable', |
| 2273 | ], |
| 2274 | }, |
| 2275 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 2276 | # Ensure that we don't accidentally reference any .pyc files whose |
| 2277 | # corresponding .py files have since been deleted. |
| 2278 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2279 | 'name': 'remove_stale_pyc_files', |
| 2280 | 'pattern': '.', |
| 2281 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2282 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2283 | 'src/tools/remove_stale_pyc_files.py', |
| 2284 | 'src/android_webview/tools', |
| 2285 | 'src/build/android', |
| 2286 | 'src/gpu/gles2_conform_support', |
| 2287 | 'src/infra', |
| 2288 | 'src/ppapi', |
| 2289 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 2290 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 2291 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2292 | 'src/third_party/catapult', |
| 2293 | 'src/third_party/closure_compiler/build', |
| 2294 | 'src/tools', |
| 2295 | ], |
| 2296 | }, |
| 2297 | { |
Dirk Pranke | cbff2fc | 2019-03-22 21:53:44 | [diff] [blame] | 2298 | # Verify that we have the right GN binary and force-install it if we |
| 2299 | # don't, in order to work around crbug.com/944367. |
| 2300 | # TODO(crbug.com/944667) Get rid of this when cipd is ensuring we |
| 2301 | # have the right binary more carefully and we no longer need this. |
| 2302 | 'name': 'ensure_gn_version', |
| 2303 | 'pattern': '.', |
| 2304 | 'action': [ |
| 2305 | 'python', |
| 2306 | 'src/buildtools/ensure_gn_version.py', |
| 2307 | Var('gn_version') |
| 2308 | ], |
| 2309 | }, |
| 2310 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2311 | # This downloads binaries for Native Client's newlib toolchain. |
| 2312 | # Done in lieu of building the toolchain from scratch as it can take |
| 2313 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2314 | 'name': 'nacltools', |
| 2315 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 2316 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2317 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2318 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 2319 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 2320 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 2321 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2322 | ], |
| 2323 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 2324 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2325 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2326 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2327 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2328 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2329 | '--arch=arm'], |
| 2330 | }, |
| 2331 | { |
| 2332 | 'name': 'sysroot_arm64', |
| 2333 | 'pattern': '.', |
| 2334 | 'condition': 'checkout_linux and checkout_arm64', |
| 2335 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2336 | '--arch=arm64'], |
| 2337 | }, |
| 2338 | { |
| 2339 | 'name': 'sysroot_x86', |
| 2340 | 'pattern': '.', |
| 2341 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 2342 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2343 | '--arch=x86'], |
| 2344 | }, |
| 2345 | { |
| 2346 | 'name': 'sysroot_mips', |
| 2347 | 'pattern': '.', |
| 2348 | 'condition': 'checkout_linux and checkout_mips', |
| 2349 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2350 | '--arch=mips'], |
| 2351 | }, |
| 2352 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2353 | 'name': 'sysroot_mips64', |
| 2354 | 'pattern': '.', |
| 2355 | 'condition': 'checkout_linux and checkout_mips64', |
| 2356 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2357 | '--arch=mips64el'], |
| 2358 | }, |
| 2359 | |
| 2360 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2361 | 'name': 'sysroot_x64', |
| 2362 | 'pattern': '.', |
| 2363 | 'condition': 'checkout_linux and checkout_x64', |
| 2364 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2365 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 2366 | }, |
| 2367 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2368 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 2369 | 'name': 'ciopfs_linux', |
| 2370 | 'pattern': '.', |
| 2371 | 'condition': 'checkout_win and host_os == "linux"', |
| 2372 | 'action': [ 'python', |
| 2373 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2374 | '--no_resume', |
| 2375 | '--no_auth', |
| 2376 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 2377 | '-s', 'src/build/ciopfs.sha1', |
| 2378 | ] |
| 2379 | }, |
| 2380 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 2381 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2382 | 'name': 'win_toolchain', |
| 2383 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 2384 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2385 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2386 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2387 | { |
| 2388 | # Update the Mac toolchain if necessary. |
| 2389 | 'name': 'mac_toolchain', |
| 2390 | 'pattern': '.', |
Rohit Rao | 92489af | 2017-10-12 21:45:48 | [diff] [blame] | 2391 | 'condition': 'checkout_ios or checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 2392 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2393 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2394 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 2395 | # debugging when used with clang on Ubuntu Precise. |
| 2396 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 2397 | { |
| 2398 | 'name': 'binutils', |
| 2399 | 'pattern': 'src/third_party/binutils', |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2400 | 'condition': 'host_os == "linux" and host_cpu != "mips64"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2401 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 2402 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2403 | 'src/third_party/binutils/download.py', |
| 2404 | ], |
| 2405 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2406 | { |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2407 | # Update the prebuilt clang toolchain. |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2408 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2409 | 'name': 'clang', |
| 2410 | 'pattern': '.', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2411 | 'condition': 'not llvm_force_head_revision', |
| 2412 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
| 2413 | }, |
| 2414 | { |
| 2415 | # Build the clang toolchain from tip-of-tree. |
| 2416 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2417 | 'name': 'clang_tot', |
| 2418 | 'pattern': '.', |
| 2419 | 'condition': 'llvm_force_head_revision', |
Hans Wennborg | d1eec55 | 2019-05-02 14:59:07 | [diff] [blame] | 2420 | 'action': ['python', 'src/tools/clang/scripts/build.py', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2421 | '--llvm-force-head-revision', |
| 2422 | '--with-android={checkout_android}'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2423 | }, |
| 2424 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 2425 | # This is supposed to support the same set of platforms as 'clang' above. |
| 2426 | 'name': 'clang_coverage', |
| 2427 | 'pattern': '.', |
| 2428 | 'condition': 'checkout_clang_coverage_tools', |
| 2429 | 'action': ['python', 'src/tools/code_coverage/update_clang_coverage_tools.py'], |
| 2430 | }, |
| 2431 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2432 | # Mac doesn't use lld so it's not included in the default clang bundle |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 2433 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 2434 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2435 | 'name': 'lld/mac', |
| 2436 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 2437 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2438 | 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2439 | }, |
| 2440 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 2441 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2442 | 'name': 'lastchange', |
| 2443 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2444 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2445 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 2446 | }, |
| 2447 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2448 | # Update GPU lists version string (for gpu/config). |
| 2449 | 'name': 'gpu_lists_version', |
| 2450 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2451 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2452 | '-m', 'GPU_LISTS_VERSION', |
| 2453 | '--revision-id-only', |
| 2454 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 2455 | }, |
| 2456 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2457 | # Update skia_commit_hash.h. |
| 2458 | 'name': 'lastchange_skia', |
| 2459 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2460 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2461 | '-m', 'SKIA_COMMIT_HASH', |
| 2462 | '-s', 'src/third_party/skia', |
| 2463 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 2464 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2465 | # Pull clang-format binaries using checked-in hashes. |
| 2466 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2467 | 'name': 'clang_format_win', |
| 2468 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2469 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2470 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2471 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2472 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2473 | '--no_auth', |
| 2474 | '--bucket', 'chromium-clang-format', |
| 2475 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2476 | ], |
| 2477 | }, |
| 2478 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2479 | 'name': 'clang_format_mac', |
| 2480 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2481 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2482 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2483 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2484 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2485 | '--no_auth', |
| 2486 | '--bucket', 'chromium-clang-format', |
| 2487 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2488 | ], |
| 2489 | }, |
| 2490 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2491 | 'name': 'clang_format_linux', |
| 2492 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2493 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2494 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2495 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2496 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2497 | '--no_auth', |
| 2498 | '--bucket', 'chromium-clang-format', |
| 2499 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 2500 | ], |
| 2501 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2502 | # Pull rc binaries using checked-in hashes. |
| 2503 | { |
| 2504 | 'name': 'rc_win', |
| 2505 | 'pattern': '.', |
| 2506 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2507 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2508 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2509 | '--no_resume', |
| 2510 | '--no_auth', |
| 2511 | '--bucket', 'chromium-browser-clang/rc', |
| 2512 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 2513 | ], |
| 2514 | }, |
| 2515 | { |
| 2516 | 'name': 'rc_mac', |
| 2517 | 'pattern': '.', |
| 2518 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2519 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2520 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2521 | '--no_resume', |
| 2522 | '--no_auth', |
| 2523 | '--bucket', 'chromium-browser-clang/rc', |
| 2524 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 2525 | ], |
| 2526 | }, |
| 2527 | { |
| 2528 | 'name': 'rc_linux', |
| 2529 | 'pattern': '.', |
| 2530 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2531 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2532 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2533 | '--no_resume', |
| 2534 | '--no_auth', |
| 2535 | '--bucket', 'chromium-browser-clang/rc', |
| 2536 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2537 | ] |
| 2538 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2539 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2540 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2541 | 'pattern': '.', |
| 2542 | 'action': [ 'download_from_google_storage', |
| 2543 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2544 | '--extract', |
| 2545 | '--no_auth', |
| 2546 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2547 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2548 | ], |
| 2549 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2550 | # Pull order files for the win/clang build. |
| 2551 | { |
| 2552 | 'name': 'orderfiles_win', |
| 2553 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 2554 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2555 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2556 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2557 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2558 | '--no_auth', |
Nico Weber | be2fc4f | 2019-05-03 13:36:05 | [diff] [blame] | 2559 | '--num_threads=4', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2560 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 2561 | '-d', 'src/chrome/build', |
| 2562 | ], |
| 2563 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 2564 | { |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 2565 | 'name': 'apache_mac', |
| 2566 | 'pattern': '\\.sha1', |
| 2567 | 'condition': 'checkout_mac', |
| 2568 | 'action': [ 'python', |
| 2569 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2570 | '--no_resume', |
| 2571 | '--directory', |
| 2572 | '--recursive', |
| 2573 | '--no_auth', |
| 2574 | '--num_threads=16', |
| 2575 | '--bucket', 'chromium-apache-mac', |
| 2576 | 'src/third_party/apache-mac', |
| 2577 | ], |
| 2578 | }, |
| 2579 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2580 | 'name': 'apache_win32', |
| 2581 | 'pattern': '\\.sha1', |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 2582 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2583 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2584 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2585 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2586 | '--directory', |
| 2587 | '--recursive', |
| 2588 | '--no_auth', |
| 2589 | '--num_threads=16', |
| 2590 | '--bucket', 'chromium-apache-win32', |
| 2591 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 2592 | ], |
| 2593 | }, |
| 2594 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2595 | 'name': 'msan_chained_origins', |
| 2596 | 'pattern': '.', |
| 2597 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2598 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2599 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2600 | '--no_resume', |
| 2601 | '--no_auth', |
| 2602 | '--bucket', 'chromium-instrumented-libraries', |
| 2603 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2604 | ], |
| 2605 | }, |
| 2606 | { |
| 2607 | 'name': 'msan_no_origins', |
| 2608 | 'pattern': '.', |
| 2609 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2610 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2611 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2612 | '--no_resume', |
| 2613 | '--no_auth', |
| 2614 | '--bucket', 'chromium-instrumented-libraries', |
| 2615 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2616 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 2617 | }, |
| 2618 | { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2619 | 'name': 'wasm_fuzzer', |
| 2620 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2621 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2622 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2623 | '--no_resume', |
| 2624 | '--no_auth', |
| 2625 | '-u', |
| 2626 | '--bucket', 'v8-wasm-fuzzer', |
| 2627 | '-s', 'src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2628 | ], |
| 2629 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2630 | |
| 2631 | # Pull down Node binaries for WebUI toolchain. |
| 2632 | { |
| 2633 | 'name': 'node_linux64', |
| 2634 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2635 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2636 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2637 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2638 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2639 | '--extract', |
| 2640 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2641 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2642 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 2643 | ], |
| 2644 | }, |
| 2645 | { |
| 2646 | 'name': 'node_mac', |
| 2647 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2648 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2649 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2650 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2651 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2652 | '--extract', |
| 2653 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2654 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2655 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 2656 | ], |
| 2657 | }, |
| 2658 | { |
| 2659 | 'name': 'node_win', |
| 2660 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2661 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2662 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2663 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2664 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2665 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2666 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2667 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 2668 | ], |
| 2669 | }, |
| 2670 | |
| 2671 | # Pull down NPM dependencies for WebUI toolchain. |
| 2672 | { |
| 2673 | 'name': 'webui_node_modules', |
| 2674 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2675 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2676 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2677 | '--no_resume', |
| 2678 | '--extract', |
| 2679 | '--no_auth', |
| 2680 | '--bucket', 'chromium-nodejs', |
| 2681 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 2682 | ], |
| 2683 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 2684 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2685 | # Download Telemetry's binary dependencies via conditionals |
| 2686 | { |
| 2687 | 'name': 'checkout_telemetry_binary_dependencies', |
| 2688 | 'condition': 'checkout_telemetry_dependencies', |
| 2689 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2690 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2691 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 2692 | ], |
| 2693 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 2694 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2695 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 2696 | { |
| 2697 | 'name': 'checkout_telemetry_benchmark_deps', |
| 2698 | 'condition': 'checkout_telemetry_dependencies', |
| 2699 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 2700 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2701 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 2702 | '-f', |
| 2703 | ], |
| 2704 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2705 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2706 | # This is used to ensure that all network operations are properly |
| 2707 | # annotated so we can document what they're for. |
| 2708 | { |
| 2709 | 'name': 'tools_traffic_annotation_linux', |
| 2710 | 'pattern': '.', |
| 2711 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2712 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2713 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2714 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2715 | '--no_auth', |
| 2716 | '--num_threads=4', |
| 2717 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2718 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 2719 | ], |
| 2720 | }, |
| 2721 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2722 | # This is used to ensure that all network operations are properly |
| 2723 | # annotated so we can document what they're for. |
| 2724 | { |
| 2725 | 'name': 'tools_traffic_annotation_windows', |
| 2726 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 2727 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2728 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2729 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2730 | '--no_resume', |
| 2731 | '--no_auth', |
| 2732 | '--num_threads=4', |
| 2733 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2734 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 2735 | ], |
| 2736 | }, |
| 2737 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2738 | # Pull down Zucchini test data. |
| 2739 | { |
| 2740 | 'name': 'zucchini_testdata', |
| 2741 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2742 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2743 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2744 | '--no_resume', |
| 2745 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 2746 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 2747 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 2748 | '--recursive', |
| 2749 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2750 | ], |
| 2751 | }, |
bsheedy | 7fbd0a5 | 2019-02-05 19:03:36 | [diff] [blame] | 2752 | # Pull down Android RenderTest goldens |
| 2753 | { |
| 2754 | 'name': 'Fetch Android RenderTest goldens', |
| 2755 | 'pattern': '.', |
| 2756 | 'condition': 'checkout_android', |
| 2757 | 'action': [ 'python', |
| 2758 | 'src/chrome/test/data/android/manage_render_test_goldens.py', |
| 2759 | 'download', |
| 2760 | ], |
| 2761 | }, |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 2762 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2763 | 'name': 'Fetch Android AFDO profile', |
| 2764 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 2765 | 'condition': 'checkout_android or checkout_linux', |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2766 | 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'], |
| 2767 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2768 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2769 | 'name': 'gvr_static_shim_android_arm_1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2770 | 'pattern': '\\.sha1', |
| 2771 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2772 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2773 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2774 | '--no_resume', |
| 2775 | '--no_auth', |
| 2776 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2777 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_1.a.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2778 | ], |
| 2779 | }, |
| 2780 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2781 | 'name': 'gvr_static_shim_android_arm_Cr', |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2782 | 'pattern': '\\.sha1', |
| 2783 | 'condition': 'checkout_android', |
| 2784 | 'action': [ 'python', |
| 2785 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2786 | '--no_resume', |
| 2787 | '--no_auth', |
| 2788 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2789 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_Cr.a.sha1', |
| 2790 | ], |
| 2791 | }, |
| 2792 | { |
| 2793 | 'name': 'gvr_static_shim_android_arm64_1', |
| 2794 | 'pattern': '\\.sha1', |
| 2795 | 'condition': 'checkout_android', |
| 2796 | 'action': [ 'python', |
| 2797 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2798 | '--no_resume', |
| 2799 | '--no_auth', |
| 2800 | '--bucket', 'chromium-gvr-static-shim', |
| 2801 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_1.a.sha1', |
| 2802 | ], |
| 2803 | }, |
| 2804 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2805 | 'name': 'gvr_static_shim_android_arm64_Cr', |
| 2806 | 'pattern': '\\.sha1', |
| 2807 | 'condition': 'checkout_android', |
| 2808 | 'action': [ 'python', |
| 2809 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2810 | '--no_resume', |
| 2811 | '--no_auth', |
| 2812 | '--bucket', 'chromium-gvr-static-shim', |
| 2813 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_Cr.a.sha1', |
| 2814 | ], |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2815 | }, |
| 2816 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2817 | 'name': 'vr_controller_test_api', |
| 2818 | 'pattern': '\\.sha1', |
| 2819 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2820 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2821 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2822 | '--no_resume', |
| 2823 | '--no_auth', |
| 2824 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 2825 | '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2826 | ], |
| 2827 | }, |
| 2828 | # Download VR test APKs only if the environment variable is set |
| 2829 | { |
| 2830 | 'name': 'vr_test_apks', |
| 2831 | 'pattern': '.', |
| 2832 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2833 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2834 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2835 | ], |
| 2836 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 2837 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 2838 | { |
| 2839 | 'name': 'ar_test_apks', |
| 2840 | 'pattern': '.', |
| 2841 | 'condition': 'checkout_android', |
| 2842 | 'action': [ 'python', |
| 2843 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 2844 | ], |
| 2845 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2846 | # Download Oculus SDK if appropriate. |
| 2847 | { |
| 2848 | 'name': 'libovr', |
| 2849 | 'pattern': '.', |
| 2850 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2851 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2852 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2853 | '--bucket', 'chrome-oculus-sdk', |
| 2854 | '--recursive', |
| 2855 | '--num_threads=10', |
| 2856 | '--directory', |
| 2857 | 'src/third_party/libovr/src', |
| 2858 | ], |
| 2859 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2860 | # Download common ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2861 | { |
| 2862 | 'name': 'ink-build', |
| 2863 | 'pattern': '.', |
| 2864 | 'condition': 'checkout_chromeos', |
| 2865 | 'action': [ 'python', |
| 2866 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2867 | '--no_resume', |
| 2868 | '--no_auth', |
| 2869 | '--num_threads=4', |
| 2870 | '--bucket', 'chromium-ink', |
| 2871 | '-d', 'src/third_party/ink/build', |
| 2872 | ], |
| 2873 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2874 | # Download wasm ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2875 | { |
| 2876 | 'name': 'ink-build-wasm', |
| 2877 | 'pattern': '.', |
| 2878 | 'condition': 'checkout_chromeos', |
| 2879 | 'action': [ 'python', |
| 2880 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2881 | '--no_resume', |
| 2882 | '--no_auth', |
| 2883 | '--num_threads=4', |
| 2884 | '--bucket', 'chromium-ink', |
| 2885 | '-d', 'src/third_party/ink/build/wasm', |
| 2886 | ], |
| 2887 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2888 | # Download wasm threaded ink resources for chromeos. |
| 2889 | { |
| 2890 | 'name': 'ink-build-wasm', |
| 2891 | 'pattern': '.', |
| 2892 | 'condition': 'checkout_chromeos', |
| 2893 | 'action': [ 'python', |
| 2894 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2895 | '--no_resume', |
| 2896 | '--no_auth', |
| 2897 | '--num_threads=4', |
| 2898 | '--bucket', 'chromium-ink', |
| 2899 | '-d', 'src/third_party/ink/build/wasm-threads', |
| 2900 | ], |
| 2901 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2902 | { |
| 2903 | # Pull doclava binaries if building for Android. |
| 2904 | 'name': 'doclava', |
| 2905 | 'pattern': '.', |
| 2906 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2907 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2908 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2909 | ], |
| 2910 | }, |
| 2911 | |
| 2912 | { |
| 2913 | 'name': 'fuchsia_sdk', |
| 2914 | 'pattern': '.', |
| 2915 | 'condition': 'checkout_fuchsia', |
| 2916 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2917 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2918 | 'src/build/fuchsia/update_sdk.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2919 | ], |
| 2920 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2921 | |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2922 | # Download public CrOS simplechrome artifacts. The first hooks is for boards |
| 2923 | # that support VM images, the second hook for all other boards. For internal |
| 2924 | # boards, see src-internal's DEPS. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2925 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2926 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2927 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2928 | 'condition': '(checkout_simplechrome and cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2929 | 'action': [ |
| 2930 | 'src/third_party/chromite/bin/cros', |
| 2931 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 2932 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2933 | '--use-external-config', |
Achuith Bhandarkar | 70e3890 | 2019-01-08 03:05:51 | [diff] [blame] | 2934 | '--require-exact-version', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2935 | '--nogn-gen', |
| 2936 | '--download-vm', |
| 2937 | '--board={cros_board}', |
| 2938 | '--cache-dir=src/build/cros_cache/', |
Benjamin Pastene | fab64fff | 2018-04-18 22:21:16 | [diff] [blame] | 2939 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 2940 | # enough to eject old toolchains from the cache. |
| 2941 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2942 | '--log-level=error', |
| 2943 | 'exit', |
| 2944 | ], |
| 2945 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2946 | { |
| 2947 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 2948 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2949 | 'condition': '(checkout_simplechrome and not cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2950 | 'action': [ |
| 2951 | 'src/third_party/chromite/bin/cros', |
| 2952 | 'chrome-sdk', |
| 2953 | '--nogoma', |
| 2954 | '--use-external-config', |
Achuith Bhandarkar | 70e3890 | 2019-01-08 03:05:51 | [diff] [blame] | 2955 | '--require-exact-version', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2956 | '--nogn-gen', |
| 2957 | '--board={cros_board}', |
| 2958 | '--cache-dir=src/build/cros_cache/', |
| 2959 | '--log-level=error', |
| 2960 | 'exit', |
| 2961 | ], |
| 2962 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2963 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2964 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 2965 | { |
| 2966 | 'name': 'vpython_common', |
| 2967 | 'pattern': '.', |
| 2968 | 'action': [ 'vpython', |
| 2969 | '-vpython-spec', 'src/.vpython', |
| 2970 | '-vpython-tool', 'install', |
| 2971 | ], |
| 2972 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2973 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 2974 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2975 | recursedeps = [ |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2976 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2977 | 'src/third_party/angle', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 2978 | 'src/third_party/openscreen/src', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 2979 | # src-internal has its own DEPS file to pull additional internal repos |
| 2980 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2981 | ] |