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', |
Johann | 5c03fd4 | 2017-11-08 15:22:17 | [diff] [blame] | 34 | 'checkout_libaom', |
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', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 37 | ] |
| 38 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 39 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 40 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 41 | # Variable that can be used to support multiple build scenarios, like having |
| 42 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 43 | # conditionally etc. |
| 44 | 'build_with_chromium': True, |
| 45 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 46 | # By default, we should check out everything needed to run on the main |
| 47 | # chromium waterfalls. This var can be also be set to "small", in order |
| 48 | # to skip things are not strictly needed to build chromium for development |
| 49 | # purposes. |
| 50 | 'checkout_configuration': 'default', |
| 51 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 52 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 53 | # build ARC++ support libraries. |
| 54 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 55 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 56 | # By default, do not check out android sdk sources. This can be overridden |
| 57 | # e.g. with custom_vars. |
| 58 | 'checkout_android_sdk_sources': False, |
| 59 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 60 | # Check out and download nacl by default. This can be disabled e.g. with |
| 61 | # custom_vars. |
| 62 | 'checkout_nacl': True, |
| 63 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 64 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 65 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 66 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 67 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 68 | # Fetch the additional packages and files needed to run all of the |
| 69 | # telemetry tests. This is false by default as some stuff is only |
| 70 | # privately accessible. |
| 71 | 'checkout_telemetry_dependencies': False, |
| 72 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 73 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 74 | # process the raw profiles produced by instrumented targets (built with |
| 75 | # the gn arg 'use_clang_coverage'). |
| 76 | 'checkout_clang_coverage_tools': False, |
| 77 | |
Wan-Teh Chang | 35851a0 | 2018-09-21 21:43:46 | [diff] [blame] | 78 | # libaom provides support for AV1. |
Johann Koenig | a1b48da | 2018-06-26 10:51:33 | [diff] [blame] | 79 | 'checkout_libaom': True, |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 80 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 81 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 82 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 83 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 84 | # TODO(dpranke): change to != "small" once != is supported. |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 85 | 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"', |
Dirk Pranke | 4c3098b | 2017-10-10 18:57:22 | [diff] [blame] | 86 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 87 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 88 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 89 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 90 | 'cros_board': '', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 91 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 92 | # as an expression. |
| 93 | 'cros_download_vm': '"{cros_board}" == "amd64-generic"', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 94 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 95 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 96 | 'angle_root': 'src/third_party/angle', |
| 97 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 98 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 99 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 100 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 101 | 'chromium_git': 'https://chromium.googlesource.com', |
| 102 | 'dawn_git': 'https://dawn.googlesource.com', |
| 103 | 'pdfium_git': 'https://pdfium.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 104 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 105 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 106 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 107 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 108 | # the commit queue can handle CLs rolling sfntly |
| 109 | # and whatever else without interference from each other. |
Lei Zhang | e183034 | 2018-02-22 03:47:02 | [diff] [blame] | 110 | 'sfntly_revision': '2804148152d27fa2e6ec97a32bc2d56318e51142', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 111 | # Three lines of non-changing comments so that |
| 112 | # the commit queue can handle CLs rolling Skia |
| 113 | # and whatever else without interference from each other. |
chromium-autoroll | 89c7de5 | 2018-10-25 18:44:14 | [diff] [blame] | 114 | 'skia_revision': 'aedc9d2add9c878e0e5f89381710ae090a63a4cf', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 115 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 116 | # the commit queue can handle CLs rolling V8 |
| 117 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | f8e550f | 2018-10-25 13:40:04 | [diff] [blame] | 118 | 'v8_revision': '14d9c29330036d87823b15706a4ebcf076b3df83', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 119 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 120 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 121 | # and whatever else without interference from each other. |
Brad Hall | 0f88420 | 2018-10-19 18:34:00 | [diff] [blame] | 122 | 'swarming_revision': 'f78187ab77127de42555afe0ad410bebde6ac6a5', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 123 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 124 | # the commit queue can handle CLs rolling ANGLE |
| 125 | # and whatever else without interference from each other. |
Thomas Anderson | acbb1ea | 2018-10-25 17:49:09 | [diff] [blame] | 126 | 'angle_revision': '683bb0130ca2c9a06fd02141861ac97ca859b9c1', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 127 | # Three lines of non-changing comments so that |
| 128 | # the commit queue can handle CLs rolling build tools |
| 129 | # and whatever else without interference from each other. |
Tom Anderson | 6f76ea33 | 2018-10-15 20:26:13 | [diff] [blame] | 130 | 'buildtools_revision': '13a00f110ef910a25763346d6538b60f12845656', |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 131 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 132 | # the commit queue can handle CLs rolling SwiftShader |
| 133 | # and whatever else without interference from each other. |
Nicolas Capens | 1c8ec5a | 2018-10-17 11:52:26 | [diff] [blame] | 134 | 'swiftshader_revision': '847fc0b278f8454f8e04c89163bf840aa903df99', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 135 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 136 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 137 | # and whatever else without interference from each other. |
chromium-autoroll | 8fdcb534 | 2018-10-25 18:41:02 | [diff] [blame] | 138 | 'pdfium_revision': 'e115ca7d978532d8bfcbf06cb03cbbb4c148881c', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 139 | # Three lines of non-changing comments so that |
| 140 | # the commit queue can handle CLs rolling openmax_dl |
| 141 | # and whatever else without interference from each other. |
Fabrice de Gans-Riberi | 429a4252 | 2018-04-05 23:08:34 | [diff] [blame] | 142 | 'openmax_dl_revision': '59265e0e9105ec94e473b59c5c7ca1941e4dbd83', |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 143 | # Three lines of non-changing comments so that |
| 144 | # the commit queue can handle CLs rolling BoringSSL |
| 145 | # and whatever else without interference from each other. |
David Benjamin | a3d7cb2 | 2018-10-18 19:48:01 | [diff] [blame] | 146 | 'boringssl_revision': 'dd412c428ad7c2a60ae4709dfbad6301e499dcb8', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 147 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 148 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 149 | # and whatever else without interference from each other. |
Mark Mentovai | 9ed14316 | 2017-07-24 19:04:47 | [diff] [blame] | 150 | 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 151 | # Three lines of non-changing comments so that |
| 152 | # the commit queue can handle CLs rolling lighttpd |
| 153 | # and whatever else without interference from each other. |
| 154 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 155 | # Three lines of non-changing comments so that |
| 156 | # the commit queue can handle CLs rolling lss |
| 157 | # and whatever else without interference from each other. |
Torne (Richard Coles) | 9a6106e | 2017-10-20 17:48:17 | [diff] [blame] | 158 | 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 159 | # Three lines of non-changing comments so that |
| 160 | # the commit queue can handle CLs rolling NaCl |
| 161 | # and whatever else without interference from each other. |
chromium-autoroll | dc6b9be | 2018-10-17 02:58:32 | [diff] [blame] | 162 | 'nacl_revision': '99673869a3cd8731d924bd32fa486feebfdc6c4f', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 163 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 164 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 165 | # and whatever else without interference from each other. |
Ben Wagner | 2cde097 | 2018-10-25 08:02:46 | [diff] [blame] | 166 | 'freetype_revision': 'f56830ed406f90f6f53ee6367f2068a0f27bf90b', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 167 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 168 | # the commit queue can handle CLs rolling HarfBuzz |
| 169 | # and whatever else without interference from each other. |
Dominik Röttsches | 8318718 | 2018-09-21 16:28:14 | [diff] [blame] | 170 | 'harfbuzz_revision': '54d332dd9b0263821376161cdffb60ffb3c7847f', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 171 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 172 | # the commit queue can handle CLs rolling catapult |
| 173 | # and whatever else without interference from each other. |
chromium-autoroll | 000e894 | 2018-10-25 19:08:53 | [diff] [blame] | 174 | 'catapult_revision': '687f318e303c48b791fa608da923c23b31cd6afe', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 175 | # Three lines of non-changing comments so that |
| 176 | # the commit queue can handle CLs rolling libFuzzer |
| 177 | # and whatever else without interference from each other. |
Jonathan Metzman | 20b2e43 | 2018-09-26 16:33:55 | [diff] [blame] | 178 | 'libfuzzer_revision': 'a305a5eb85ed42edc5c965c14f308f576cb245ca', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 179 | # Three lines of non-changing comments so that |
| 180 | # the commit queue can handle CLs rolling devtools-node-modules |
| 181 | # and whatever else without interference from each other. |
Will Chen | fa87418 | 2018-01-03 19:03:26 | [diff] [blame] | 182 | 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 183 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 184 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 185 | # and whatever else without interference from each other. |
Jonathan Metzman | 94ba7cf | 2018-09-27 01:31:38 | [diff] [blame] | 186 | 'libprotobuf-mutator': 'c148984c5af61e628252ebdc5f141fe89d83106c', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 187 | # Three lines of non-changing comments so that |
| 188 | # the commit queue can handle CLs rolling feed |
| 189 | # and whatever else without interference from each other. |
Filip Gorski | 8838952 | 2018-10-24 20:40:56 | [diff] [blame] | 190 | 'feed_revision': '8acb73aa3e5f28938b54d35c1a6d40e02399d799', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 191 | # Three lines of non-changing comments so that |
| 192 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 193 | # and whatever else without interference from each other. |
| 194 | 'android_sdk_build-tools_version': 'version:27.0.3-cr0', |
| 195 | # Three lines of non-changing comments so that |
| 196 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 197 | # and whatever else without interference from each other. |
| 198 | 'android_sdk_emulator_version': 'version:27.1.12-cr0', |
| 199 | # Three lines of non-changing comments so that |
| 200 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 201 | # and whatever else without interference from each other. |
| 202 | 'android_sdk_extras_version': 'version:47.0.0-cr0', |
| 203 | # Three lines of non-changing comments so that |
| 204 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 205 | # and whatever else without interference from each other. |
| 206 | 'android_sdk_platform-tools_version': 'version:27.0.1-cr0', |
| 207 | # Three lines of non-changing comments so that |
| 208 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 209 | # and whatever else without interference from each other. |
| 210 | 'android_sdk_platforms_version': 'version:android-27-cr0', |
| 211 | # Three lines of non-changing comments so that |
| 212 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 213 | # and whatever else without interference from each other. |
| 214 | 'android_sdk_sources_version': 'version:android-27-cr1', |
| 215 | # Three lines of non-changing comments so that |
| 216 | # the commit queue can handle CLs rolling android_sdk_tools_version |
| 217 | # and whatever else without interference from each other. |
Shenghua Zhang | 6fa967c | 2018-04-16 20:45:42 | [diff] [blame] | 218 | 'android_sdk_tools_version': 'version:26.1.1-cr9', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 219 | # Three lines of non-changing comments so that |
| 220 | # the commit queue can handle CLs rolling feed |
| 221 | # and whatever else without interference from each other. |
chromium-autoroll | 2ab888a | 2018-10-24 14:33:00 | [diff] [blame] | 222 | 'spv_tools_revision': '18fe6d59e5e8dd8c5ccf8baa40f57bda838e7dfa', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 223 | # Three lines of non-changing comments so that |
| 224 | # the commit queue can handle CLs rolling feed |
| 225 | # and whatever else without interference from each other. |
chromium-autoroll | aaae45f | 2018-10-11 19:22:19 | [diff] [blame] | 226 | 'spv_headers_revision': '801cca8104245c07e8cc53292da87ee1b76946fe', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 227 | # Three lines of non-changing comments so that |
| 228 | # the commit queue can handle CLs rolling feed |
| 229 | # and whatever else without interference from each other. |
| 230 | 'spirv_cross_revision': '69b034f26e28a76a6f4e5d9521123072b24d7ea2', |
| 231 | # Three lines of non-changing comments so that |
| 232 | # the commit queue can handle CLs rolling feed |
| 233 | # and whatever else without interference from each other. |
Corentin Wallez | 1f90c24 | 2018-10-23 14:18:35 | [diff] [blame] | 234 | 'shaderc_revision': '909f0d3d31e7e7c8f39b40ba0e1dd7f99b749776', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 235 | # Three lines of non-changing comments so that |
| 236 | # the commit queue can handle CLs rolling feed |
| 237 | # and whatever else without interference from each other. |
| 238 | 'dawn_revision': '16092faa163b20f6b85ff407b1ec1d61cb9d7f2a', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 239 | } |
| 240 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 241 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 242 | # If you need to add a new host, contact chrome infrastracture team. |
| 243 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 244 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 245 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 246 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 247 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 248 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 249 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 250 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 251 | 'pdfium.googlesource.com', |
| 252 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 253 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 254 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 255 | ] |
| 256 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 257 | deps = { |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 258 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | 8b36b40 | 2018-07-31 22:36:22 | [diff] [blame] | 259 | Var('chromium_git') + '/media_router.git' + '@' + '475baa8b2eb0a7a9dd1c96c9c7a6a8d9035cc8d7', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 260 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 261 | 'src/android_webview/tools/cts_archive': { |
| 262 | 'packages': [ |
| 263 | { |
| 264 | 'package': 'chromium/android_webview/tools/cts_archive', |
| 265 | 'version': 'version:1.0', |
| 266 | }, |
| 267 | ], |
| 268 | 'condition': 'checkout_android', |
| 269 | 'dep_type': 'cipd', |
| 270 | }, |
| 271 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 272 | 'src/buildtools': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 273 | Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'), |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 274 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 275 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 276 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 277 | 'condition': 'checkout_mac', |
| 278 | }, |
| 279 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 280 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 281 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 282 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 283 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 284 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 285 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 286 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 287 | 'packages': [ |
| 288 | { |
| 289 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
| 290 | 'version': 'version:20180816.2', |
| 291 | }, |
| 292 | ], |
| 293 | 'condition': 'checkout_mac', |
| 294 | 'dep_type': 'cipd', |
| 295 | }, |
| 296 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 297 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 298 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 299 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 300 | 'src/chrome/test/data/xr/webxr_samples': |
bsheedy | f5e1fc4 | 2018-07-03 01:37:52 | [diff] [blame] | 301 | Var('chromium_git') + '/external/github.com/immersive-web/webxr-samples.git' + '@' + 'cf02f19c4ff6894705a9407722ab52551e010c60', |
bsheedy | a7a2860 | 2018-04-30 21:20:01 | [diff] [blame] | 302 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 303 | 'src/ios/third_party/earl_grey/src': { |
John Budorick | 94d5eeb | 2018-09-24 13:58:47 | [diff] [blame] | 304 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '3102ef3b137f05a179628b1b9768856e5feea90e', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 305 | 'condition': 'checkout_ios', |
| 306 | }, |
| 307 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 308 | 'src/ios/third_party/earl_grey2/src': { |
| 309 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'f9ae5c477b3b1f8e38559867ca21dfb034c21d92', |
| 310 | 'condition': 'checkout_ios', |
| 311 | }, |
| 312 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 313 | 'src/ios/third_party/edo/src': { |
| 314 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '4ec31ccbe1e03279619915b00ddf30af5422106e', |
| 315 | 'condition': 'checkout_ios', |
| 316 | }, |
| 317 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 318 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 319 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 320 | 'condition': 'checkout_ios', |
| 321 | }, |
| 322 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 323 | 'src/ios/third_party/firebase': { |
| 324 | 'packages': [ |
| 325 | { |
| 326 | 'package': 'chromium/third_party/firebase_ios', |
Peter K. Lee | 3f4f3e0 | 2018-09-13 14:13:36 | [diff] [blame] | 327 | 'version': 'version:5.8.0', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 328 | }, |
| 329 | ], |
| 330 | 'condition': 'checkout_ios', |
| 331 | 'dep_type': 'cipd', |
| 332 | }, |
| 333 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 334 | 'src/ios/third_party/fishhook/src': { |
| 335 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 336 | 'condition': 'checkout_ios', |
| 337 | }, |
| 338 | |
| 339 | 'src/ios/third_party/gcdwebserver/src': { |
| 340 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 341 | 'condition': 'checkout_ios', |
| 342 | }, |
| 343 | |
| 344 | 'src/ios/third_party/material_components_ios/src': { |
Gauthier Ambard | fa2079b | 2018-10-24 09:26:43 | [diff] [blame] | 345 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '3543693ca80a183aab49f5fe89e0c93888fb50a8', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 346 | 'condition': 'checkout_ios', |
| 347 | }, |
| 348 | |
| 349 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 350 | '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] | 351 | 'condition': 'checkout_ios', |
| 352 | }, |
| 353 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 354 | 'src/ios/third_party/material_internationalization_ios/src': { |
Peter K. Lee | 1595833 | 2018-08-21 02:42:41 | [diff] [blame] | 355 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + 'c62f2cacaba48f8901ad811f23c2cbc9581364aa', |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 356 | 'condition': 'checkout_ios', |
| 357 | }, |
| 358 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 359 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
| 360 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
| 361 | 'condition': 'checkout_ios', |
| 362 | }, |
| 363 | |
| 364 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 365 | '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] | 366 | 'condition': 'checkout_ios', |
| 367 | }, |
| 368 | |
| 369 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 370 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '92c9e56f4e07622084b3d931247db974fec55dde', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 371 | 'condition': 'checkout_ios', |
| 372 | }, |
| 373 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 374 | 'src/ios/third_party/motion_interchange_objc/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 375 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 376 | 'condition': 'checkout_ios', |
| 377 | }, |
| 378 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 379 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | e82ca94 | 2018-03-06 20:32:21 | [diff] [blame] | 380 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '5df831026445004b2fc0f6a42f8b8f33af46512b', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 381 | 'condition': 'checkout_ios', |
| 382 | }, |
| 383 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 384 | 'src/ios/third_party/motion_transitioning_objc/src': { |
| 385 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6', |
| 386 | 'condition': 'checkout_ios', |
| 387 | }, |
| 388 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 389 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 390 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 391 | 'condition': 'checkout_ios', |
| 392 | }, |
| 393 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 394 | 'src/media/cdm/api': |
Hans Wennborg | 38f372a | 2018-10-17 18:23:23 | [diff] [blame] | 395 | Var('chromium_git') + '/chromium/cdm.git' + '@' + '817c8005a57ea3ca417f767b3b3679601329afd8', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 396 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 397 | 'src/native_client': { |
| 398 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 399 | 'condition': 'checkout_nacl', |
| 400 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 401 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 402 | 'src/tools/luci-go': { |
| 403 | 'packages': [ |
| 404 | { |
| 405 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 526264b | 2018-07-31 03:10:14 | [diff] [blame] | 406 | 'version': 'git_revision:bc125484b8513898f17bc2501ac5e95330f44a3b', |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 407 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 408 | { |
| 409 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
| 410 | 'version': 'git_revision:bc125484b8513898f17bc2501ac5e95330f44a3b', |
| 411 | }, |
| 412 | { |
| 413 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
| 414 | 'version': 'git_revision:bc125484b8513898f17bc2501ac5e95330f44a3b', |
| 415 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 416 | ], |
| 417 | 'dep_type': 'cipd', |
| 418 | }, |
| 419 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 420 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 421 | # third_party/spirv-cross/src because its header files are at the root of |
| 422 | # the repository and dependencies include them like so: |
| 423 | # #include "spirv-cross/spirv_glsl.hpp" |
| 424 | 'src/third_party/spirv-cross/spirv-cross': |
| 425 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 426 | Var('spirv_cross_revision'), |
| 427 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 428 | 'src/third_party/spirv-headers/src': |
| 429 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 430 | Var('spv_headers_revision'), |
| 431 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 432 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 433 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 434 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 435 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 436 | 'src/third_party/shaderc/src': |
| 437 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 438 | Var('shaderc_revision'), |
| 439 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 440 | 'src/third_party/accessibility_test_framework': { |
| 441 | 'packages': [ |
| 442 | { |
| 443 | 'package': 'chromium/third_party/accessibility-test-framework', |
| 444 | 'version': 'version:2.1-cr0', |
| 445 | }, |
| 446 | ], |
| 447 | 'condition': 'checkout_android', |
| 448 | 'dep_type': 'cipd', |
| 449 | }, |
| 450 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 451 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 452 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 453 | 'condition': 'checkout_android', |
| 454 | }, |
| 455 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 456 | 'src/third_party/android_ndk': { |
Peter Collingbourne | 69af524 | 2018-08-16 03:30:15 | [diff] [blame] | 457 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '4e2cea441bfd43f0863d14f57b1e1844260b9884', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 458 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 459 | }, |
| 460 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 461 | 'src/third_party/android_support_test_runner': { |
| 462 | 'packages': [ |
| 463 | { |
| 464 | 'package': 'chromium/third_party/android_support_test_runner', |
| 465 | 'version': 'version:0.5-cr0', |
| 466 | }, |
| 467 | ], |
| 468 | 'condition': 'checkout_android', |
| 469 | 'dep_type': 'cipd', |
| 470 | }, |
| 471 | |
| 472 | 'src/third_party/android_system_sdk': { |
| 473 | 'packages': [ |
| 474 | { |
| 475 | 'package': 'chromium/third_party/android_system_sdk', |
John Budorick | 2d7e42f | 2018-06-27 02:33:57 | [diff] [blame] | 476 | 'version': 'version:28-dp3-cr0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 477 | }, |
| 478 | ], |
| 479 | 'condition': 'checkout_android', |
| 480 | 'dep_type': 'cipd', |
| 481 | }, |
| 482 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 483 | 'src/third_party/android_tools': { |
John Budorick | 2d7e42f | 2018-06-27 02:33:57 | [diff] [blame] | 484 | 'url': Var('chromium_git') + '/android_tools.git' + '@' + '130499e25286f4d56acafa252fee09f3cc595c49', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 485 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 486 | }, |
| 487 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 488 | 'src/third_party/android_build_tools/aapt2': { |
| 489 | 'packages': [ |
| 490 | { |
| 491 | 'package': 'chromium/third_party/android_tools_aapt2', |
| 492 | 'version': 'version:3.2.0-alpha18-4804415-cr0', |
| 493 | }, |
| 494 | ], |
| 495 | 'condition': 'checkout_android', |
| 496 | 'dep_type': 'cipd', |
| 497 | }, |
| 498 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 499 | 'src/third_party/android_build_tools/art': { |
| 500 | 'packages': [ |
| 501 | { |
| 502 | 'package': 'chromium/third_party/android_build_tools/art', |
| 503 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 504 | }, |
| 505 | ], |
| 506 | 'condition': 'checkout_android', |
| 507 | 'dep_type': 'cipd', |
| 508 | }, |
| 509 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 510 | 'src/third_party/android_build_tools/bundletool': { |
| 511 | 'packages': [ |
| 512 | { |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 513 | 'package': 'chromium/third_party/android_tools_bundletool', |
Ben Mason | 8960f09 | 2018-09-17 17:41:14 | [diff] [blame] | 514 | 'version': 'version:0.6.0-cr0', |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 515 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 516 | ], |
| 517 | 'condition': 'checkout_android', |
| 518 | 'dep_type': 'cipd', |
| 519 | }, |
| 520 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 521 | 'src/third_party/android_sdk/public': { |
| 522 | 'packages': [ |
| 523 | { |
| 524 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 525 | 'version': Var('android_sdk_build-tools_version'), |
| 526 | }, |
| 527 | { |
| 528 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 529 | 'version': Var('android_sdk_emulator_version'), |
| 530 | }, |
| 531 | { |
| 532 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 533 | 'version': Var('android_sdk_extras_version'), |
| 534 | }, |
| 535 | { |
| 536 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 537 | 'version': Var('android_sdk_platform-tools_version'), |
| 538 | }, |
| 539 | { |
| 540 | 'package': 'chromium/third_party/android_sdk/public/platforms', |
| 541 | 'version': Var('android_sdk_platforms_version'), |
| 542 | }, |
| 543 | { |
| 544 | 'package': 'chromium/third_party/android_sdk/public/tools', |
| 545 | 'version': Var('android_sdk_tools_version'), |
| 546 | }, |
| 547 | ], |
| 548 | 'condition': 'checkout_android', |
| 549 | 'dep_type': 'cipd', |
| 550 | }, |
| 551 | |
| 552 | 'src/third_party/android_sdk/sources': { |
| 553 | 'packages': [ |
| 554 | { |
| 555 | 'package': 'chromium/third_party/android_sdk/sources', |
| 556 | 'version': Var('android_sdk_sources_version'), |
| 557 | }, |
| 558 | ], |
| 559 | 'condition': 'checkout_android_sdk_sources', |
| 560 | 'dep_type': 'cipd', |
| 561 | }, |
| 562 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 563 | 'src/third_party/angle': |
| 564 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 565 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 566 | 'src/third_party/dawn': |
| 567 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 568 | |
| 569 | 'src/third_party/glfw/src': |
| 570 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '096efdf798896cff80a0b2db08d7398b703406fe', |
| 571 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 572 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 573 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 574 | 'condition': 'checkout_android', |
| 575 | }, |
| 576 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 577 | 'src/third_party/apk-patch-size-estimator': { |
| 578 | 'packages': [ |
| 579 | { |
| 580 | 'package': 'chromium/third_party/apk-patch-size-estimator', |
| 581 | 'version': 'version:0.2-cr0', |
| 582 | }, |
| 583 | ], |
| 584 | 'condition': 'checkout_android', |
| 585 | 'dep_type': 'cipd', |
| 586 | }, |
| 587 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 588 | 'src/third_party/auto/src': { |
Peter Wen | 4689398 | 2018-01-18 16:53:46 | [diff] [blame] | 589 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82', |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 590 | 'condition': 'checkout_android', |
| 591 | }, |
| 592 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 593 | 'src/third_party/bazel': { |
| 594 | 'packages': [ |
| 595 | { |
| 596 | 'package': 'chromium/third_party/bazel', |
| 597 | 'version': 'version:0.10.0', |
| 598 | }, |
| 599 | ], |
| 600 | 'condition': 'checkout_android', |
| 601 | 'dep_type': 'cipd', |
| 602 | }, |
| 603 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 604 | 'src/third_party/bidichecker': |
| 605 | Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0', |
| 606 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 607 | 'src/third_party/bison': { |
| 608 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 609 | 'condition': 'checkout_win', |
| 610 | }, |
| 611 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 612 | 'src/third_party/boringssl/src': |
| 613 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 614 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 615 | 'src/third_party/bouncycastle': { |
| 616 | 'packages': [ |
| 617 | { |
| 618 | 'package': 'chromium/third_party/bouncycastle', |
| 619 | 'version': 'version:1.46-cr0', |
| 620 | }, |
| 621 | ], |
| 622 | 'condition': 'checkout_android', |
| 623 | 'dep_type': 'cipd', |
| 624 | }, |
| 625 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 626 | 'src/third_party/breakpad/breakpad': |
Lei Zhang | d4bc0b1 | 2018-08-28 21:59:50 | [diff] [blame] | 627 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '54fa71efbe50fb2b58096d871575b59e12edba6d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 628 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 629 | 'src/third_party/byte_buddy': { |
| 630 | 'packages': [ |
| 631 | { |
| 632 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 633 | 'version': 'version:1.8.8-cr0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 634 | }, |
| 635 | ], |
| 636 | 'condition': 'checkout_android', |
| 637 | 'dep_type': 'cipd', |
| 638 | }, |
| 639 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 640 | 'src/third_party/catapult': |
| 641 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 642 | |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 643 | 'src/third_party/cct_dynamic_module/src': { |
John Lin | 16da2603 | 2018-09-28 16:29:27 | [diff] [blame] | 644 | 'url': Var('chromium_git') + '/dynamicmodule' + '@' + 'b89f5147c1fdf1d02850932ecd1ff16b8c0be545', |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 645 | 'condition': 'checkout_android', |
| 646 | }, |
| 647 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 648 | 'src/third_party/ced/src': |
| 649 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9', |
| 650 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 651 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 652 | 'src/third_party/chromite': { |
chromium-autoroll | 9eb3bde | 2018-10-25 17:55:27 | [diff] [blame] | 653 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '02d100af0b2e8f0e53db84890bd61bd328a63850', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 654 | 'condition': 'checkout_linux', |
| 655 | }, |
| 656 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 657 | 'src/third_party/cld_3/src': |
Nico Weber | a8d4b46 | 2018-01-31 20:54:52 | [diff] [blame] | 658 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '484afe9ba7438d078e60b3a26e7fb590213c0e17', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 659 | |
| 660 | 'src/third_party/colorama/src': |
| 661 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 662 | |
| 663 | 'src/third_party/crc32c/src': |
tzik | 5793a94f | 2018-05-11 04:18:40 | [diff] [blame] | 664 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + 'f8925d027884dde9a8f567f1fa230b92048f6132', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 665 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 666 | # For Linux and Chromium OS. |
| 667 | 'src/third_party/cros_system_api': { |
Joel Hockey | 44eda7d | 2018-10-23 23:47:40 | [diff] [blame] | 668 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + 'c270bd3daa83f820140656925dbe507f3af988f3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 669 | 'condition': 'checkout_linux', |
| 670 | }, |
| 671 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 672 | 'src/third_party/custom_tabs_client/src': { |
Pavel Shmakov | 360fced | 2018-10-25 13:27:58 | [diff] [blame] | 673 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + '873e69c103480c501fafdacf06e90febadeeff9c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 674 | 'condition': 'checkout_android', |
| 675 | }, |
| 676 | |
| 677 | 'src/third_party/depot_tools': |
chromium-autoroll | 0aae447 | 2018-10-24 21:46:56 | [diff] [blame] | 678 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '2b71832f6d8dc74119589992836cf95aeb8a9842', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 679 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 680 | 'src/third_party/devtools-node-modules': |
| 681 | 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] | 682 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 683 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 684 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 685 | |
| 686 | 'src/third_party/elfutils/src': { |
| 687 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 688 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 689 | }, |
| 690 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 691 | 'src/third_party/errorprone/lib': { |
Peter Wen | a9d8462a | 2018-04-25 17:18:12 | [diff] [blame] | 692 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 693 | 'condition': 'checkout_android', |
| 694 | }, |
| 695 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 696 | 'src/third_party/espresso': { |
| 697 | 'packages': [ |
| 698 | { |
| 699 | 'package': 'chromium/third_party/espresso', |
| 700 | 'version': 'version:2.2.1-cr0', |
| 701 | }, |
| 702 | ], |
| 703 | 'condition': 'checkout_android', |
| 704 | 'dep_type': 'cipd', |
| 705 | }, |
| 706 | |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 707 | 'src/third_party/feed/src': { |
| 708 | 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'), |
| 709 | 'condition': 'checkout_android', |
| 710 | }, |
| 711 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 712 | 'src/third_party/ffmpeg': |
John Rummell | 3e19edd7 | 2018-10-02 00:12:28 | [diff] [blame] | 713 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '458e9fd3f8e8c913a739389c65dfaf1f77ee9106', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 714 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 715 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 716 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 717 | |
| 718 | 'src/third_party/flatbuffers/src': |
Charlie Harrison | 3ac88c1 | 2018-08-16 20:06:01 | [diff] [blame] | 719 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + 'c721009491dc8275052cf33f7334e015ed737927', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 720 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 721 | # Used for embedded builds. CrOS & Linux use the system version. |
| 722 | 'src/third_party/fontconfig/src': { |
Tom Anderson | d9d67cb2 | 2018-09-13 00:46:29 | [diff] [blame] | 723 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'ba206df9b9a7ca300265f650842c1459ff7c634a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 724 | 'condition': 'checkout_linux', |
| 725 | }, |
| 726 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 727 | 'src/third_party/freetype/src': |
| 728 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 729 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 730 | 'src/third_party/harfbuzz-ng/src': |
| 731 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 732 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 733 | # Chrome OS touchpad gestures library. |
| 734 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 735 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 736 | 'condition': 'checkout_linux', |
| 737 | }, |
| 738 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 739 | 'src/third_party/glslang/src': |
Corentin Wallez | c552f40 | 2018-10-23 14:22:28 | [diff] [blame] | 740 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + 'a08f465d5398518e9a6aeebd4775604a4c10e381', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 741 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 742 | 'src/third_party/google_toolbox_for_mac/src': { |
| 743 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 744 | 'condition': 'checkout_ios or checkout_mac', |
| 745 | }, |
| 746 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 747 | 'src/third_party/google-truth': { |
| 748 | 'packages': [ |
| 749 | { |
| 750 | 'package': 'chromium/third_party/google-truth', |
| 751 | 'version': 'version:0.40', |
| 752 | }, |
| 753 | ], |
| 754 | 'condition': 'checkout_android', |
| 755 | 'dep_type': 'cipd', |
| 756 | }, |
| 757 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 758 | 'src/third_party/googletest/src': |
Findit | fce9aaf | 2018-10-10 13:03:42 | [diff] [blame] | 759 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '2e68926a9d4929e9289373cd49e40ddcb9a628f7', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 760 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 761 | # GNU binutils assembler for x86-32. |
| 762 | 'src/third_party/gnu_binutils': { |
| 763 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 764 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 765 | }, |
| 766 | |
| 767 | 'src/third_party/gperf': { |
| 768 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 769 | 'condition': 'checkout_win', |
| 770 | }, |
| 771 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 772 | 'src/third_party/gson': { |
| 773 | 'packages': [ |
| 774 | { |
| 775 | 'package': 'chromium/third_party/gson', |
| 776 | 'version': 'version:2.8.0-cr0', |
| 777 | }, |
| 778 | ], |
| 779 | 'condition': 'checkout_android', |
| 780 | 'dep_type': 'cipd', |
| 781 | }, |
| 782 | |
| 783 | 'src/third_party/guava': { |
| 784 | 'packages': [ |
| 785 | { |
| 786 | 'package': 'chromium/third_party/guava', |
| 787 | 'version': 'version:23.0-cr0', |
| 788 | }, |
| 789 | ], |
| 790 | 'condition': 'checkout_android', |
| 791 | 'dep_type': 'cipd', |
| 792 | }, |
| 793 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 794 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 795 | '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] | 796 | 'condition': 'checkout_android', |
| 797 | }, |
| 798 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 799 | 'src/third_party/arcore-android-sdk/src': { |
| 800 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '772bed8e2e1bc525a0d10441fa71168a9a87eb69', |
| 801 | 'condition': 'checkout_android', |
| 802 | }, |
| 803 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 804 | 'src/third_party/hamcrest': { |
| 805 | 'packages': [ |
| 806 | { |
| 807 | 'package': 'chromium/third_party/hamcrest', |
| 808 | 'version': 'version:1.3-cr0', |
| 809 | }, |
| 810 | ], |
| 811 | 'condition': 'checkout_android', |
| 812 | 'dep_type': 'cipd', |
| 813 | }, |
| 814 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 815 | 'src/third_party/hunspell_dictionaries': |
Chris Nardi | eea5de8 | 2017-10-14 22:21:31 | [diff] [blame] | 816 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 817 | |
| 818 | 'src/third_party/icu': |
Jungshik Shin | 6896452 | 2018-10-21 13:47:24 | [diff] [blame] | 819 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'b029971f1fc6b20d06887c47c7afebd5881f31ff', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 820 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 821 | 'src/third_party/icu4j': { |
| 822 | 'packages': [ |
| 823 | { |
| 824 | 'package': 'chromium/third_party/icu4j', |
| 825 | 'version': 'version:53.1-cr0', |
| 826 | }, |
| 827 | ], |
| 828 | 'condition': 'checkout_android', |
| 829 | 'dep_type': 'cipd', |
| 830 | }, |
| 831 | |
| 832 | 'src/third_party/intellij': { |
| 833 | 'packages': [ |
| 834 | { |
| 835 | 'package': 'chromium/third_party/intellij', |
| 836 | 'version': 'version:12.0-cr0', |
| 837 | }, |
| 838 | ], |
| 839 | 'condition': 'checkout_android', |
| 840 | 'dep_type': 'cipd', |
| 841 | }, |
| 842 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 843 | 'src/third_party/jsoncpp/source': |
| 844 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 845 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 846 | 'src/third_party/jsr-305/src': { |
| 847 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 848 | 'condition': 'checkout_android', |
| 849 | }, |
| 850 | |
| 851 | 'src/third_party/junit/src': { |
| 852 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 853 | 'condition': 'checkout_android', |
| 854 | }, |
| 855 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 856 | 'src/third_party/leveldatabase/src': |
Victor Costan | 8b0b2bb | 2018-10-03 23:33:53 | [diff] [blame] | 857 | Var('chromium_git') + '/external/leveldb.git' + '@' + '73d5834eceee8efa9a8ccfec77dc096a9e8ba18a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 858 | |
| 859 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 860 | 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] | 861 | |
| 862 | 'src/third_party/libaddressinput/src': |
Rouslan Solomakhin | d53916d | 2018-08-08 14:47:14 | [diff] [blame] | 863 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'd7ed8e2f3f35ce9a3aafdfdc48745ceab66e7229', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 864 | |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 865 | 'src/third_party/libaom/source/libaom': { |
Wan-Teh Chang | cf54a9c2 | 2018-10-22 20:46:20 | [diff] [blame] | 866 | 'url': Var('aomedia_git') + '/aom.git' + '@' + '8f2210a2e54a119bede333e9465997240fc079a9', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 867 | 'condition': 'checkout_libaom', |
| 868 | }, |
| 869 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 870 | # Userspace interface to kernel DRM services. |
| 871 | 'src/third_party/libdrm/src': { |
Robert Kroeger | 43841d2 | 2018-06-01 20:48:35 | [diff] [blame] | 872 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0061b1f244574e615c415479725046ab2951f09a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 873 | 'condition': 'checkout_linux', |
| 874 | }, |
| 875 | |
| 876 | # The libevdev library (Chrome OS version). |
| 877 | 'src/third_party/libevdev/src': { |
| 878 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 879 | 'condition': 'checkout_linux', |
| 880 | }, |
| 881 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 882 | 'src/third_party/libjpeg_turbo': |
Leon Scroggins III | 3b964297 | 2018-08-29 20:37:04 | [diff] [blame] | 883 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '61a2bbaa9aec89cb2c882d87ace6aba9aee49bb9', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 884 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 885 | 'src/third_party/liblouis/src': { |
| 886 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2', |
| 887 | 'condition': 'checkout_linux', |
| 888 | }, |
| 889 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 890 | 'src/third_party/libphonenumber/dist': |
| 891 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 892 | |
| 893 | 'src/third_party/libprotobuf-mutator/src': |
| 894 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 895 | |
| 896 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 897 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 898 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 899 | # Android Explicit Synchronization. |
| 900 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 901 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 902 | 'condition': 'checkout_linux', |
| 903 | }, |
| 904 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 905 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | 01cfef7 | 2018-10-22 23:25:14 | [diff] [blame] | 906 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '137d99c91fc7f03b6b886e5ac342ee4ef7f875ec', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 907 | |
| 908 | 'src/third_party/libwebm/source': |
Miguel Casas | de34e70 | 2018-10-10 23:29:48 | [diff] [blame] | 909 | Var('chromium_git') + '/webm/libwebm.git' + '@' + 'e4931ebc0a816458c18a6734e91a4d1b5acd5c56', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 910 | |
| 911 | 'src/third_party/libyuv': |
Frank Barchard | a0a6d69d | 2018-09-06 22:07:45 | [diff] [blame] | 912 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '9a07219dc8fbf2b77e390d16bd24809444838a91', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 913 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 914 | 'src/third_party/lighttpd': { |
| 915 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 916 | 'condition': 'checkout_mac or checkout_win', |
| 917 | }, |
| 918 | |
| 919 | 'src/third_party/lss': { |
| 920 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 921 | 'condition': 'checkout_android or checkout_linux', |
| 922 | }, |
| 923 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 924 | 'src/third_party/material_design_icons/src': { |
| 925 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 926 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 927 | 'condition': 'checkout_ios', |
| 928 | }, |
| 929 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 930 | # GNU binutils assembler for x86-64. |
| 931 | 'src/third_party/mingw-w64/mingw/bin': { |
| 932 | '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] | 933 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 934 | }, |
| 935 | |
| 936 | # Graphics buffer allocator for Chrome OS. |
| 937 | 'src/third_party/minigbm/src': { |
Maksim Sisov | 1df29ae | 2018-08-14 09:47:05 | [diff] [blame] | 938 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'ff1ecaf1014df4cb9ca36c5a270647a9934aaa99', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 939 | 'condition': 'checkout_linux', |
| 940 | }, |
| 941 | |
| 942 | # Minizip library. Used on Chrome OS. |
| 943 | 'src/third_party/minizip/src': { |
Tatsuhisa Yamaguchi | 0c5fc82a | 2017-12-27 01:52:10 | [diff] [blame] | 944 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 945 | 'condition': 'checkout_linux', |
| 946 | }, |
| 947 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 948 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 949 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 950 | 'condition': 'checkout_android', |
| 951 | }, |
| 952 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 953 | # Binaries for nacl sdk. |
| 954 | 'src/third_party/nacl_sdk_binaries': { |
| 955 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 956 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 957 | }, |
| 958 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 959 | 'src/third_party/netty-tcnative/src': { |
| 960 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 961 | 'condition': 'checkout_android', |
| 962 | }, |
| 963 | |
| 964 | 'src/third_party/netty4/src': { |
| 965 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 966 | 'condition': 'checkout_android', |
| 967 | }, |
| 968 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 969 | 'src/third_party/objenesis': { |
| 970 | 'packages': [ |
| 971 | { |
| 972 | 'package': 'chromium/third_party/objenesis', |
| 973 | 'version': 'version:2.4-cr0', |
| 974 | }, |
| 975 | ], |
| 976 | 'condition': 'checkout_android', |
| 977 | 'dep_type': 'cipd', |
| 978 | }, |
| 979 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 980 | 'src/third_party/openh264/src': |
Wez | c6d201bf | 2018-05-03 17:04:59 | [diff] [blame] | 981 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '3b51f16a4a41df729f8d647f03e48c5f272911ff', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 982 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 983 | 'src/third_party/openmax_dl': |
| 984 | Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'), |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 985 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 986 | 'src/third_party/ow2_asm': { |
| 987 | 'packages': [ |
| 988 | { |
| 989 | 'package': 'chromium/third_party/ow2_asm', |
| 990 | 'version': 'version:5.0.1-cr0', |
| 991 | }, |
| 992 | ], |
| 993 | 'condition': 'checkout_android', |
| 994 | 'dep_type': 'cipd', |
| 995 | }, |
| 996 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 997 | 'src/third_party/pdfium': |
| 998 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 999 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1000 | # Parses Windows PE/COFF executable format. |
| 1001 | 'src/third_party/pefile': { |
| 1002 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1003 | 'condition': 'checkout_win', |
| 1004 | }, |
| 1005 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1006 | 'src/third_party/perfetto': |
chromium-autoroll | 07f3eaa | 2018-10-25 20:30:37 | [diff] [blame^] | 1007 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '4fa2f815257c8b3256a3dbca4095e0ebe2437836', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1008 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1009 | 'src/third_party/perl': { |
| 1010 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78', |
| 1011 | 'condition': 'checkout_win', |
| 1012 | }, |
| 1013 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1014 | 'src/third_party/proguard': { |
| 1015 | 'packages': [ |
| 1016 | { |
| 1017 | 'package': 'chromium/third_party/proguard', |
| 1018 | 'version': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca', |
| 1019 | }, |
| 1020 | ], |
| 1021 | 'condition': 'checkout_android', |
| 1022 | 'dep_type': 'cipd', |
| 1023 | }, |
| 1024 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1025 | # Dependency of chromite.git and skia. |
| 1026 | 'src/third_party/pyelftools': { |
| 1027 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1028 | 'condition': 'checkout_linux', |
| 1029 | }, |
| 1030 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1031 | 'src/third_party/pyftpdlib/src': |
| 1032 | Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45', |
| 1033 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1034 | 'src/third_party/quic_trace/src': |
Victor Vasiliev | 54d6095 | 2018-08-25 03:25:24 | [diff] [blame] | 1035 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + 'fe1b2587410c47adac3b26a224bc9c979024c191', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1036 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1037 | 'src/third_party/pywebsocket/src': |
| 1038 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 1039 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1040 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1041 | 'packages': [ |
| 1042 | { |
| 1043 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1044 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1045 | }, |
| 1046 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1047 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1048 | 'dep_type': 'cipd', |
| 1049 | }, |
| 1050 | |
| 1051 | 'src/third_party/qemu-mac-x64': { |
| 1052 | 'packages': [ |
| 1053 | { |
| 1054 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1055 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1056 | }, |
| 1057 | ], |
| 1058 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1059 | 'dep_type': 'cipd', |
| 1060 | }, |
| 1061 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1062 | 'src/third_party/re2/src': |
Paul Wankadia | 09edee5 | 2018-10-24 00:02:26 | [diff] [blame] | 1063 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '89528a380a7e9722dbf7b5a817251049eab355fb', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1064 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1065 | 'src/third_party/r8': { |
| 1066 | 'packages': [ |
| 1067 | { |
| 1068 | 'package': 'chromium/third_party/r8', |
Eric Stevenson | bf9f06e | 2018-10-03 16:06:54 | [diff] [blame] | 1069 | 'version': 'version:1.2.48', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1070 | }, |
| 1071 | ], |
| 1072 | 'condition': 'checkout_android', |
| 1073 | 'dep_type': 'cipd', |
| 1074 | }, |
| 1075 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1076 | 'src/third_party/requests/src': { |
| 1077 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1078 | 'condition': 'checkout_android', |
| 1079 | }, |
| 1080 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1081 | 'src/third_party/robolectric': { |
| 1082 | 'packages': [ |
| 1083 | { |
| 1084 | 'package': 'chromium/third_party/robolectric', |
| 1085 | 'version': 'version:3.5.1', |
| 1086 | }, |
| 1087 | ], |
| 1088 | 'condition': 'checkout_android', |
| 1089 | 'dep_type': 'cipd', |
| 1090 | }, |
| 1091 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1092 | 'src/third_party/robolectric/robolectric': { |
John Budorick | e7f2d133 | 2017-11-30 23:35:22 | [diff] [blame] | 1093 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1094 | 'condition': 'checkout_android', |
| 1095 | }, |
| 1096 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1097 | 'src/third_party/sfntly/src': |
| 1098 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
| 1099 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1100 | 'src/third_party/skia': |
| 1101 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1102 | |
| 1103 | 'src/third_party/smhasher/src': |
| 1104 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1105 | |
| 1106 | 'src/third_party/snappy/src': |
Victor Costan | 1f3361c | 2018-08-20 18:58:05 | [diff] [blame] | 1107 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'ea660b57d65d68d521287c903459b6dd3b2804d0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1108 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1109 | 'src/third_party/sqlite4java': { |
| 1110 | 'packages': [ |
| 1111 | { |
| 1112 | 'package': 'chromium/third_party/sqlite4java', |
| 1113 | 'version': 'version:0.282-cr0', |
| 1114 | }, |
| 1115 | ], |
| 1116 | 'condition': 'checkout_android', |
| 1117 | 'dep_type': 'cipd', |
| 1118 | }, |
| 1119 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1120 | 'src/third_party/swiftshader': |
| 1121 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1122 | |
| 1123 | 'src/third_party/ub-uiautomator/lib': { |
| 1124 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1125 | 'condition': 'checkout_android', |
| 1126 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1127 | |
| 1128 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 462adb2 | 2018-06-25 18:56:57 | [diff] [blame] | 1129 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7a8bc9a90ca96634aa56ee712856d97f27d903f8', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1130 | |
| 1131 | 'src/third_party/visualmetrics/src': |
| 1132 | Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', |
| 1133 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1134 | # Display server protocol for Linux. |
| 1135 | 'src/third_party/wayland/src': { |
| 1136 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 1137 | 'condition': 'checkout_linux', |
| 1138 | }, |
| 1139 | |
| 1140 | # Wayland protocols that add functionality not available in the core protocol. |
| 1141 | 'src/third_party/wayland-protocols/src': { |
Alexandros Frantzis | aed3360b | 2018-01-24 18:40:04 | [diff] [blame] | 1142 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '4f789286e4ab7f6fecc2ccb895d79362a9b2382a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1143 | 'condition': 'checkout_linux', |
| 1144 | }, |
| 1145 | |
| 1146 | # Wireless Display Software. Used on Chrome OS. |
| 1147 | 'src/third_party/wds/src': { |
| 1148 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1149 | 'condition': 'checkout_linux', |
| 1150 | }, |
| 1151 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1152 | 'src/third_party/webdriver/pylib': |
| 1153 | Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd', |
| 1154 | |
| 1155 | 'src/third_party/webgl/src': |
Kenneth Russell | 319faa6f | 2018-10-24 17:21:44 | [diff] [blame] | 1156 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '0d55c887e92b645f6effe753528323ab2ffd94c2', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1157 | |
| 1158 | 'src/third_party/webrtc': |
chromium-autoroll | 7d02490 | 2018-10-25 18:07:13 | [diff] [blame] | 1159 | Var('webrtc_git') + '/src.git' + '@' + '6c6c9df99db678abc7b504e29cb64088dd0d5a19', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1160 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1161 | 'src/third_party/xdg-utils': { |
| 1162 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1163 | 'condition': 'checkout_linux', |
| 1164 | }, |
| 1165 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1166 | 'src/third_party/xstream': { |
| 1167 | 'packages': [ |
| 1168 | { |
| 1169 | 'package': 'chromium/third_party/xstream', |
| 1170 | 'version': 'version:1.4.8-cr0', |
| 1171 | }, |
| 1172 | ], |
| 1173 | 'condition': 'checkout_android', |
| 1174 | 'dep_type': 'cipd', |
| 1175 | }, |
| 1176 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1177 | 'src/third_party/yasm/source/patched-yasm': |
Mostyn Bramley-Moore | 2be9a9d0 | 2018-07-07 00:35:17 | [diff] [blame] | 1178 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1179 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1180 | 'src/tools/page_cycler/acid3': |
| 1181 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1182 | |
| 1183 | 'src/tools/swarming_client': |
| 1184 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1185 | |
| 1186 | 'src/v8': |
| 1187 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1188 | |
| 1189 | 'src-internal': { |
chromium-internal-autoroll | 4436ce0c | 2018-10-25 18:19:39 | [diff] [blame] | 1190 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@26d60831534dfe4498c76e3d623d813af254f689', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1191 | 'condition': 'checkout_src_internal', |
| 1192 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1193 | |
| 1194 | # === ANDROID_DEPS Generated Code Start === |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1195 | # Generated by //tools/android/roll/android_deps/fetch_all.py |
| 1196 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1197 | 'packages': [ |
| 1198 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1199 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
| 1200 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1201 | }, |
| 1202 | ], |
| 1203 | 'condition': 'checkout_android', |
| 1204 | 'dep_type': 'cipd', |
| 1205 | }, |
| 1206 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1207 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1208 | 'packages': [ |
| 1209 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1210 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
| 1211 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1212 | }, |
| 1213 | ], |
| 1214 | 'condition': 'checkout_android', |
| 1215 | 'dep_type': 'cipd', |
| 1216 | }, |
| 1217 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1218 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1219 | 'packages': [ |
| 1220 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1221 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
| 1222 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1223 | }, |
| 1224 | ], |
| 1225 | 'condition': 'checkout_android', |
| 1226 | 'dep_type': 'cipd', |
| 1227 | }, |
| 1228 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1229 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1230 | 'packages': [ |
| 1231 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1232 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
| 1233 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1234 | }, |
| 1235 | ], |
| 1236 | 'condition': 'checkout_android', |
| 1237 | 'dep_type': 'cipd', |
| 1238 | }, |
| 1239 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1240 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1241 | 'packages': [ |
| 1242 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1243 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
| 1244 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1245 | }, |
| 1246 | ], |
| 1247 | 'condition': 'checkout_android', |
| 1248 | 'dep_type': 'cipd', |
| 1249 | }, |
| 1250 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1251 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1252 | 'packages': [ |
| 1253 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1254 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
| 1255 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1256 | }, |
| 1257 | ], |
| 1258 | 'condition': 'checkout_android', |
| 1259 | 'dep_type': 'cipd', |
| 1260 | }, |
| 1261 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1262 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1263 | 'packages': [ |
| 1264 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1265 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
| 1266 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1267 | }, |
| 1268 | ], |
| 1269 | 'condition': 'checkout_android', |
| 1270 | 'dep_type': 'cipd', |
| 1271 | }, |
| 1272 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1273 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1274 | 'packages': [ |
| 1275 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1276 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
| 1277 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1278 | }, |
| 1279 | ], |
| 1280 | 'condition': 'checkout_android', |
| 1281 | 'dep_type': 'cipd', |
| 1282 | }, |
| 1283 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1284 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1285 | 'packages': [ |
| 1286 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1287 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
| 1288 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1289 | }, |
| 1290 | ], |
| 1291 | 'condition': 'checkout_android', |
| 1292 | 'dep_type': 'cipd', |
| 1293 | }, |
| 1294 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1295 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1296 | 'packages': [ |
| 1297 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1298 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
| 1299 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1300 | }, |
| 1301 | ], |
| 1302 | 'condition': 'checkout_android', |
| 1303 | 'dep_type': 'cipd', |
| 1304 | }, |
| 1305 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1306 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1307 | 'packages': [ |
| 1308 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1309 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 1310 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1311 | }, |
| 1312 | ], |
| 1313 | 'condition': 'checkout_android', |
| 1314 | 'dep_type': 'cipd', |
| 1315 | }, |
| 1316 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1317 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1318 | 'packages': [ |
| 1319 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1320 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
| 1321 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1322 | }, |
| 1323 | ], |
| 1324 | 'condition': 'checkout_android', |
| 1325 | 'dep_type': 'cipd', |
| 1326 | }, |
| 1327 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1328 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1329 | 'packages': [ |
| 1330 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1331 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
| 1332 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1333 | }, |
| 1334 | ], |
| 1335 | 'condition': 'checkout_android', |
| 1336 | 'dep_type': 'cipd', |
| 1337 | }, |
| 1338 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1339 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1340 | 'packages': [ |
| 1341 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1342 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
| 1343 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1344 | }, |
| 1345 | ], |
| 1346 | 'condition': 'checkout_android', |
| 1347 | 'dep_type': 'cipd', |
| 1348 | }, |
| 1349 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1350 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1351 | 'packages': [ |
| 1352 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1353 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
| 1354 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1355 | }, |
| 1356 | ], |
| 1357 | 'condition': 'checkout_android', |
| 1358 | 'dep_type': 'cipd', |
| 1359 | }, |
| 1360 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1361 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1362 | 'packages': [ |
| 1363 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1364 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
| 1365 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1366 | }, |
| 1367 | ], |
| 1368 | 'condition': 'checkout_android', |
| 1369 | 'dep_type': 'cipd', |
| 1370 | }, |
| 1371 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1372 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1373 | 'packages': [ |
| 1374 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1375 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
| 1376 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1377 | }, |
| 1378 | ], |
| 1379 | 'condition': 'checkout_android', |
| 1380 | 'dep_type': 'cipd', |
| 1381 | }, |
| 1382 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1383 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1384 | 'packages': [ |
| 1385 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1386 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
| 1387 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1388 | }, |
| 1389 | ], |
| 1390 | 'condition': 'checkout_android', |
| 1391 | 'dep_type': 'cipd', |
| 1392 | }, |
| 1393 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1394 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1395 | 'packages': [ |
| 1396 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1397 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
| 1398 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1399 | }, |
| 1400 | ], |
| 1401 | 'condition': 'checkout_android', |
| 1402 | 'dep_type': 'cipd', |
| 1403 | }, |
| 1404 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1405 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1406 | 'packages': [ |
| 1407 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1408 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
| 1409 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1410 | }, |
| 1411 | ], |
| 1412 | 'condition': 'checkout_android', |
| 1413 | 'dep_type': 'cipd', |
| 1414 | }, |
| 1415 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1416 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1417 | 'packages': [ |
| 1418 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1419 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
| 1420 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1421 | }, |
| 1422 | ], |
| 1423 | 'condition': 'checkout_android', |
| 1424 | 'dep_type': 'cipd', |
| 1425 | }, |
| 1426 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1427 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1428 | 'packages': [ |
| 1429 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1430 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
| 1431 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1432 | }, |
| 1433 | ], |
| 1434 | 'condition': 'checkout_android', |
| 1435 | 'dep_type': 'cipd', |
| 1436 | }, |
| 1437 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1438 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1439 | 'packages': [ |
| 1440 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1441 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
| 1442 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1443 | }, |
| 1444 | ], |
| 1445 | 'condition': 'checkout_android', |
| 1446 | 'dep_type': 'cipd', |
| 1447 | }, |
| 1448 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1449 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1450 | 'packages': [ |
| 1451 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1452 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
| 1453 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1454 | }, |
| 1455 | ], |
| 1456 | 'condition': 'checkout_android', |
| 1457 | 'dep_type': 'cipd', |
| 1458 | }, |
| 1459 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1460 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1461 | 'packages': [ |
| 1462 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1463 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
| 1464 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1465 | }, |
| 1466 | ], |
| 1467 | 'condition': 'checkout_android', |
| 1468 | 'dep_type': 'cipd', |
| 1469 | }, |
| 1470 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1471 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1472 | 'packages': [ |
| 1473 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1474 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
| 1475 | 'version': 'version:27.0.0-cr0', |
| 1476 | }, |
| 1477 | ], |
| 1478 | 'condition': 'checkout_android', |
| 1479 | 'dep_type': 'cipd', |
| 1480 | }, |
| 1481 | |
| 1482 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 1483 | 'packages': [ |
| 1484 | { |
| 1485 | '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] | 1486 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1487 | }, |
| 1488 | ], |
| 1489 | 'condition': 'checkout_android', |
| 1490 | 'dep_type': 'cipd', |
| 1491 | }, |
| 1492 | |
| 1493 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 1494 | 'packages': [ |
| 1495 | { |
| 1496 | '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] | 1497 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1498 | }, |
| 1499 | ], |
| 1500 | 'condition': 'checkout_android', |
| 1501 | 'dep_type': 'cipd', |
| 1502 | }, |
| 1503 | |
| 1504 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 1505 | 'packages': [ |
| 1506 | { |
| 1507 | '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] | 1508 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1509 | }, |
| 1510 | ], |
| 1511 | 'condition': 'checkout_android', |
| 1512 | 'dep_type': 'cipd', |
| 1513 | }, |
| 1514 | |
| 1515 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 1516 | 'packages': [ |
| 1517 | { |
| 1518 | '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] | 1519 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1520 | }, |
| 1521 | ], |
| 1522 | 'condition': 'checkout_android', |
| 1523 | 'dep_type': 'cipd', |
| 1524 | }, |
| 1525 | |
| 1526 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 1527 | 'packages': [ |
| 1528 | { |
| 1529 | '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] | 1530 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1531 | }, |
| 1532 | ], |
| 1533 | 'condition': 'checkout_android', |
| 1534 | 'dep_type': 'cipd', |
| 1535 | }, |
| 1536 | |
| 1537 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 1538 | 'packages': [ |
| 1539 | { |
| 1540 | '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] | 1541 | 'version': 'version:16.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1542 | }, |
| 1543 | ], |
| 1544 | 'condition': 'checkout_android', |
| 1545 | 'dep_type': 'cipd', |
| 1546 | }, |
| 1547 | |
| 1548 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 1549 | 'packages': [ |
| 1550 | { |
| 1551 | '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] | 1552 | 'version': 'version:16.0.1-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1553 | }, |
| 1554 | ], |
| 1555 | 'condition': 'checkout_android', |
| 1556 | 'dep_type': 'cipd', |
| 1557 | }, |
| 1558 | |
| 1559 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 1560 | 'packages': [ |
| 1561 | { |
| 1562 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
| 1563 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1564 | }, |
| 1565 | ], |
| 1566 | 'condition': 'checkout_android', |
| 1567 | 'dep_type': 'cipd', |
| 1568 | }, |
| 1569 | |
| 1570 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 1571 | 'packages': [ |
| 1572 | { |
| 1573 | '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] | 1574 | 'version': 'version:15.0.1-cr0', |
| 1575 | }, |
| 1576 | ], |
| 1577 | 'condition': 'checkout_android', |
| 1578 | 'dep_type': 'cipd', |
| 1579 | }, |
| 1580 | |
| 1581 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 1582 | 'packages': [ |
| 1583 | { |
| 1584 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
| 1585 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1586 | }, |
| 1587 | ], |
| 1588 | 'condition': 'checkout_android', |
| 1589 | 'dep_type': 'cipd', |
| 1590 | }, |
| 1591 | |
| 1592 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 1593 | 'packages': [ |
| 1594 | { |
| 1595 | '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] | 1596 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1597 | }, |
| 1598 | ], |
| 1599 | 'condition': 'checkout_android', |
| 1600 | 'dep_type': 'cipd', |
| 1601 | }, |
| 1602 | |
| 1603 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 1604 | 'packages': [ |
| 1605 | { |
| 1606 | '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] | 1607 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1608 | }, |
| 1609 | ], |
| 1610 | 'condition': 'checkout_android', |
| 1611 | 'dep_type': 'cipd', |
| 1612 | }, |
| 1613 | |
| 1614 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 1615 | 'packages': [ |
| 1616 | { |
| 1617 | '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] | 1618 | 'version': 'version:16.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1619 | }, |
| 1620 | ], |
| 1621 | 'condition': 'checkout_android', |
| 1622 | 'dep_type': 'cipd', |
| 1623 | }, |
| 1624 | |
| 1625 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 1626 | 'packages': [ |
| 1627 | { |
| 1628 | '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] | 1629 | 'version': 'version:15.0.1-cr0', |
| 1630 | }, |
| 1631 | ], |
| 1632 | 'condition': 'checkout_android', |
| 1633 | 'dep_type': 'cipd', |
| 1634 | }, |
| 1635 | |
| 1636 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 1637 | 'packages': [ |
| 1638 | { |
| 1639 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
| 1640 | 'version': 'version:15.0.1-cr0', |
| 1641 | }, |
| 1642 | ], |
| 1643 | 'condition': 'checkout_android', |
| 1644 | 'dep_type': 'cipd', |
| 1645 | }, |
| 1646 | |
| 1647 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 1648 | 'packages': [ |
| 1649 | { |
| 1650 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
| 1651 | 'version': 'version:15.0.1-cr0', |
| 1652 | }, |
| 1653 | ], |
| 1654 | 'condition': 'checkout_android', |
| 1655 | 'dep_type': 'cipd', |
| 1656 | }, |
| 1657 | |
| 1658 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 1659 | 'packages': [ |
| 1660 | { |
| 1661 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
| 1662 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1663 | }, |
| 1664 | ], |
| 1665 | 'condition': 'checkout_android', |
| 1666 | 'dep_type': 'cipd', |
| 1667 | }, |
| 1668 | |
| 1669 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 1670 | 'packages': [ |
| 1671 | { |
| 1672 | '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] | 1673 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1674 | }, |
| 1675 | ], |
| 1676 | 'condition': 'checkout_android', |
| 1677 | 'dep_type': 'cipd', |
| 1678 | }, |
| 1679 | |
| 1680 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 1681 | 'packages': [ |
| 1682 | { |
| 1683 | '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] | 1684 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1685 | }, |
| 1686 | ], |
| 1687 | 'condition': 'checkout_android', |
| 1688 | 'dep_type': 'cipd', |
| 1689 | }, |
| 1690 | |
| 1691 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 1692 | 'packages': [ |
| 1693 | { |
| 1694 | '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] | 1695 | 'version': 'version:15.0.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1696 | }, |
| 1697 | ], |
| 1698 | 'condition': 'checkout_android', |
| 1699 | 'dep_type': 'cipd', |
| 1700 | }, |
| 1701 | |
Tibor Goldschwendt | 2696eb8 | 2018-08-07 21:42:18 | [diff] [blame] | 1702 | 'src/third_party/android_deps/libs/com_google_android_play_core': { |
| 1703 | 'packages': [ |
| 1704 | { |
| 1705 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core', |
| 1706 | 'version': 'version:1.3.0-cr0', |
| 1707 | }, |
| 1708 | ], |
| 1709 | 'condition': 'checkout_android', |
| 1710 | 'dep_type': 'cipd', |
| 1711 | }, |
| 1712 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 1713 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 1714 | 'packages': [ |
| 1715 | { |
| 1716 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 1717 | 'version': 'version:1.3.9-cr0', |
| 1718 | }, |
| 1719 | ], |
| 1720 | 'condition': 'checkout_android', |
| 1721 | 'dep_type': 'cipd', |
| 1722 | }, |
| 1723 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 1724 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 1725 | 'packages': [ |
| 1726 | { |
| 1727 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 1728 | 'version': 'version:2.17-cr0', |
| 1729 | }, |
| 1730 | ], |
| 1731 | 'condition': 'checkout_android', |
| 1732 | 'dep_type': 'cipd', |
| 1733 | }, |
| 1734 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 1735 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 1736 | 'packages': [ |
| 1737 | { |
| 1738 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 1739 | 'version': 'version:2.17-cr0', |
| 1740 | }, |
| 1741 | ], |
| 1742 | 'condition': 'checkout_android', |
| 1743 | 'dep_type': 'cipd', |
| 1744 | }, |
| 1745 | |
| 1746 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 1747 | 'packages': [ |
| 1748 | { |
| 1749 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 1750 | 'version': 'version:2.17-cr0', |
| 1751 | }, |
| 1752 | ], |
| 1753 | 'condition': 'checkout_android', |
| 1754 | 'dep_type': 'cipd', |
| 1755 | }, |
| 1756 | |
| 1757 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 1758 | 'packages': [ |
| 1759 | { |
| 1760 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 1761 | 'version': 'version:2.17-cr0', |
| 1762 | }, |
| 1763 | ], |
| 1764 | 'condition': 'checkout_android', |
| 1765 | 'dep_type': 'cipd', |
| 1766 | }, |
| 1767 | |
| 1768 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 1769 | 'packages': [ |
| 1770 | { |
| 1771 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
| 1772 | 'version': 'version:2.1.3-cr0', |
| 1773 | }, |
| 1774 | ], |
| 1775 | 'condition': 'checkout_android', |
| 1776 | 'dep_type': 'cipd', |
| 1777 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 1778 | |
| 1779 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 1780 | 'packages': [ |
| 1781 | { |
| 1782 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 1783 | 'version': 'version:9-dev-r4023-3-cr0', |
| 1784 | }, |
| 1785 | ], |
| 1786 | 'condition': 'checkout_android', |
| 1787 | 'dep_type': 'cipd', |
| 1788 | }, |
| 1789 | |
| 1790 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 1791 | 'packages': [ |
| 1792 | { |
| 1793 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 1794 | 'version': 'version:1.5-cr0', |
| 1795 | }, |
| 1796 | ], |
| 1797 | 'condition': 'checkout_android', |
| 1798 | 'dep_type': 'cipd', |
| 1799 | }, |
| 1800 | |
| 1801 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 1802 | 'packages': [ |
| 1803 | { |
| 1804 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 1805 | 'version': 'version:25.0-jre-cr0', |
| 1806 | }, |
| 1807 | ], |
| 1808 | 'condition': 'checkout_android', |
| 1809 | 'dep_type': 'cipd', |
| 1810 | }, |
| 1811 | |
| 1812 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 1813 | 'packages': [ |
| 1814 | { |
| 1815 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 1816 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 1817 | }, |
| 1818 | ], |
| 1819 | 'condition': 'checkout_android', |
| 1820 | 'dep_type': 'cipd', |
| 1821 | }, |
| 1822 | |
| 1823 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 1824 | 'packages': [ |
| 1825 | { |
| 1826 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
| 1827 | 'version': 'version:1.11.0-cr0', |
| 1828 | }, |
| 1829 | ], |
| 1830 | 'condition': 'checkout_android', |
| 1831 | 'dep_type': 'cipd', |
| 1832 | }, |
| 1833 | |
| 1834 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 1835 | 'packages': [ |
| 1836 | { |
| 1837 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 1838 | 'version': 'version:1.0-cr0', |
| 1839 | }, |
| 1840 | ], |
| 1841 | 'condition': 'checkout_android', |
| 1842 | 'dep_type': 'cipd', |
| 1843 | }, |
| 1844 | |
| 1845 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 1846 | 'packages': [ |
| 1847 | { |
| 1848 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 1849 | 'version': 'version:1-cr0', |
| 1850 | }, |
| 1851 | ], |
| 1852 | 'condition': 'checkout_android', |
| 1853 | 'dep_type': 'cipd', |
| 1854 | }, |
| 1855 | |
| 1856 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 1857 | 'packages': [ |
| 1858 | { |
| 1859 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
| 1860 | 'version': 'version:2.3.0-cr0', |
| 1861 | }, |
| 1862 | ], |
| 1863 | 'condition': 'checkout_android', |
| 1864 | 'dep_type': 'cipd', |
| 1865 | }, |
| 1866 | |
| 1867 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 1868 | 'packages': [ |
| 1869 | { |
| 1870 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
| 1871 | 'version': 'version:1.14-cr0', |
| 1872 | }, |
| 1873 | ], |
| 1874 | 'condition': 'checkout_android', |
| 1875 | 'dep_type': 'cipd', |
| 1876 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 1877 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1878 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1879 | } |
| 1880 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 1881 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1882 | include_rules = [ |
| 1883 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 1884 | # 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] | 1885 | '+base', |
| 1886 | '+build', |
| 1887 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1888 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 1889 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1890 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 1891 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1892 | '+testing', |
| 1893 | '+third_party/icu/source/common/unicode', |
| 1894 | '+third_party/icu/source/i18n/unicode', |
| 1895 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 1896 | |
| 1897 | # Chromium cannot directly depend on Abseil. |
| 1898 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1899 | ] |
| 1900 | |
| 1901 | |
| 1902 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 1903 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1904 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 1905 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1906 | 'skia', |
| 1907 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 1908 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1909 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1910 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 1911 | |
| 1912 | |
| 1913 | hooks = [ |
| 1914 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 1915 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 1916 | # first hook so that other things that get/generate into the output |
| 1917 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1918 | 'name': 'landmines', |
| 1919 | 'pattern': '.', |
| 1920 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1921 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1922 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 1923 | ], |
| 1924 | }, |
| 1925 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 1926 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 1927 | # disabled. |
| 1928 | 'name': 'disable_depot_tools_selfupdate', |
| 1929 | 'pattern': '.', |
| 1930 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1931 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 1932 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 1933 | '--disable', |
| 1934 | ], |
| 1935 | }, |
| 1936 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 1937 | # Ensure that we don't accidentally reference any .pyc files whose |
| 1938 | # corresponding .py files have since been deleted. |
| 1939 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1940 | 'name': 'remove_stale_pyc_files', |
| 1941 | 'pattern': '.', |
| 1942 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1943 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1944 | 'src/tools/remove_stale_pyc_files.py', |
| 1945 | 'src/android_webview/tools', |
| 1946 | 'src/build/android', |
| 1947 | 'src/gpu/gles2_conform_support', |
| 1948 | 'src/infra', |
| 1949 | 'src/ppapi', |
| 1950 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 1951 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 1952 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1953 | 'src/third_party/catapult', |
| 1954 | 'src/third_party/closure_compiler/build', |
qyearsley | dfda207b | 2016-07-08 14:16:12 | [diff] [blame] | 1955 | 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1956 | 'src/tools', |
| 1957 | ], |
| 1958 | }, |
| 1959 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 1960 | # This downloads binaries for Native Client's newlib toolchain. |
| 1961 | # Done in lieu of building the toolchain from scratch as it can take |
| 1962 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1963 | 'name': 'nacltools', |
| 1964 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1965 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1966 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1967 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 1968 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 1969 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 1970 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 1971 | ], |
| 1972 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 1973 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1974 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1975 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1976 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1977 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1978 | '--arch=arm'], |
| 1979 | }, |
| 1980 | { |
| 1981 | 'name': 'sysroot_arm64', |
| 1982 | 'pattern': '.', |
| 1983 | 'condition': 'checkout_linux and checkout_arm64', |
| 1984 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1985 | '--arch=arm64'], |
| 1986 | }, |
| 1987 | { |
| 1988 | 'name': 'sysroot_x86', |
| 1989 | 'pattern': '.', |
| 1990 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 1991 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1992 | '--arch=x86'], |
| 1993 | }, |
| 1994 | { |
| 1995 | 'name': 'sysroot_mips', |
| 1996 | 'pattern': '.', |
| 1997 | 'condition': 'checkout_linux and checkout_mips', |
| 1998 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1999 | '--arch=mips'], |
| 2000 | }, |
| 2001 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2002 | 'name': 'sysroot_mips64', |
| 2003 | 'pattern': '.', |
| 2004 | 'condition': 'checkout_linux and checkout_mips64', |
| 2005 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2006 | '--arch=mips64el'], |
| 2007 | }, |
| 2008 | |
| 2009 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2010 | 'name': 'sysroot_x64', |
| 2011 | 'pattern': '.', |
| 2012 | 'condition': 'checkout_linux and checkout_x64', |
| 2013 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2014 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 2015 | }, |
| 2016 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2017 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 2018 | 'name': 'ciopfs_linux', |
| 2019 | 'pattern': '.', |
| 2020 | 'condition': 'checkout_win and host_os == "linux"', |
| 2021 | 'action': [ 'python', |
| 2022 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2023 | '--no_resume', |
| 2024 | '--no_auth', |
| 2025 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 2026 | '-s', 'src/build/ciopfs.sha1', |
| 2027 | ] |
| 2028 | }, |
| 2029 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 2030 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2031 | 'name': 'win_toolchain', |
| 2032 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 2033 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2034 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2035 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2036 | { |
| 2037 | # Update the Mac toolchain if necessary. |
| 2038 | 'name': 'mac_toolchain', |
| 2039 | 'pattern': '.', |
Rohit Rao | 92489af | 2017-10-12 21:45:48 | [diff] [blame] | 2040 | 'condition': 'checkout_ios or checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 2041 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2042 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2043 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 2044 | # debugging when used with clang on Ubuntu Precise. |
| 2045 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 2046 | { |
| 2047 | 'name': 'binutils', |
| 2048 | 'pattern': 'src/third_party/binutils', |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2049 | 'condition': 'host_os == "linux" and host_cpu != "mips64"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2050 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 2051 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2052 | 'src/third_party/binutils/download.py', |
| 2053 | ], |
| 2054 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2055 | { |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2056 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2057 | 'name': 'clang', |
| 2058 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2059 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2060 | }, |
| 2061 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 2062 | # This is supposed to support the same set of platforms as 'clang' above. |
| 2063 | 'name': 'clang_coverage', |
| 2064 | 'pattern': '.', |
| 2065 | 'condition': 'checkout_clang_coverage_tools', |
| 2066 | 'action': ['python', 'src/tools/code_coverage/update_clang_coverage_tools.py'], |
| 2067 | }, |
| 2068 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2069 | # 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] | 2070 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 2071 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2072 | 'name': 'lld/mac', |
| 2073 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 2074 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2075 | 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2076 | }, |
| 2077 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 2078 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2079 | 'name': 'lastchange', |
| 2080 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2081 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2082 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 2083 | }, |
| 2084 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2085 | # Update GPU lists version string (for gpu/config). |
| 2086 | 'name': 'gpu_lists_version', |
| 2087 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2088 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2089 | '-m', 'GPU_LISTS_VERSION', |
| 2090 | '--revision-id-only', |
| 2091 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 2092 | }, |
| 2093 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2094 | # Update skia_commit_hash.h. |
| 2095 | 'name': 'lastchange_skia', |
| 2096 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2097 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2098 | '-m', 'SKIA_COMMIT_HASH', |
| 2099 | '-s', 'src/third_party/skia', |
| 2100 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 2101 | }, |
Xiaoqian Dai | 8962649 | 2018-06-28 17:07:46 | [diff] [blame] | 2102 | # Pull GN binaries. This needs to be before running GYP below. |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 2103 | { |
Scott Graham | 3538353 | 2018-06-27 16:27:35 | [diff] [blame] | 2104 | 'name': 'gn_win', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2105 | 'pattern': '.', |
Scott Graham | 3538353 | 2018-06-27 16:27:35 | [diff] [blame] | 2106 | 'condition': 'host_os == "win"', |
| 2107 | 'action': [ 'python', |
| 2108 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2109 | '--no_resume', |
| 2110 | '--no_auth', |
| 2111 | '--bucket', 'chromium-gn', |
| 2112 | '-s', 'src/buildtools/win/gn.exe.sha1', |
| 2113 | ], |
| 2114 | }, |
| 2115 | { |
| 2116 | 'name': 'gn_mac', |
| 2117 | 'pattern': '.', |
| 2118 | 'condition': 'host_os == "mac"', |
| 2119 | 'action': [ 'python', |
| 2120 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2121 | '--no_resume', |
| 2122 | '--no_auth', |
| 2123 | '--bucket', 'chromium-gn', |
| 2124 | '-s', 'src/buildtools/mac/gn.sha1', |
| 2125 | ], |
| 2126 | }, |
| 2127 | { |
| 2128 | 'name': 'gn_linux64', |
| 2129 | 'pattern': '.', |
| 2130 | 'condition': 'host_os == "linux"', |
| 2131 | 'action': [ 'python', |
| 2132 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2133 | '--no_resume', |
| 2134 | '--no_auth', |
| 2135 | '--bucket', 'chromium-gn', |
| 2136 | '-s', 'src/buildtools/linux64/gn.sha1', |
| 2137 | ], |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 2138 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2139 | # Pull clang-format binaries using checked-in hashes. |
| 2140 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2141 | 'name': 'clang_format_win', |
| 2142 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2143 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2144 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2145 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2146 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2147 | '--no_auth', |
| 2148 | '--bucket', 'chromium-clang-format', |
| 2149 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2150 | ], |
| 2151 | }, |
| 2152 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2153 | 'name': 'clang_format_mac', |
| 2154 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2155 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2156 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2157 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2158 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2159 | '--no_auth', |
| 2160 | '--bucket', 'chromium-clang-format', |
| 2161 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2162 | ], |
| 2163 | }, |
| 2164 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2165 | 'name': 'clang_format_linux', |
| 2166 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2167 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2168 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2169 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2170 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2171 | '--no_auth', |
| 2172 | '--bucket', 'chromium-clang-format', |
| 2173 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 2174 | ], |
| 2175 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2176 | # Pull rc binaries using checked-in hashes. |
| 2177 | { |
| 2178 | 'name': 'rc_win', |
| 2179 | 'pattern': '.', |
| 2180 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2181 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2182 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2183 | '--no_resume', |
| 2184 | '--no_auth', |
| 2185 | '--bucket', 'chromium-browser-clang/rc', |
| 2186 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 2187 | ], |
| 2188 | }, |
| 2189 | { |
| 2190 | 'name': 'rc_mac', |
| 2191 | 'pattern': '.', |
| 2192 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2193 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2194 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2195 | '--no_resume', |
| 2196 | '--no_auth', |
| 2197 | '--bucket', 'chromium-browser-clang/rc', |
| 2198 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 2199 | ], |
| 2200 | }, |
| 2201 | { |
| 2202 | 'name': 'rc_linux', |
| 2203 | 'pattern': '.', |
| 2204 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2205 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2206 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2207 | '--no_resume', |
| 2208 | '--no_auth', |
| 2209 | '--bucket', 'chromium-browser-clang/rc', |
| 2210 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2211 | ] |
| 2212 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2213 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2214 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2215 | 'pattern': '.', |
| 2216 | 'action': [ 'download_from_google_storage', |
| 2217 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2218 | '--extract', |
| 2219 | '--no_auth', |
| 2220 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2221 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2222 | ], |
| 2223 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2224 | # Pull order files for the win/clang build. |
| 2225 | { |
| 2226 | 'name': 'orderfiles_win', |
| 2227 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 2228 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2229 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2230 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2231 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2232 | '--no_auth', |
| 2233 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 2234 | '-d', 'src/chrome/build', |
| 2235 | ], |
| 2236 | }, |
Sergiy Byelozyorov | 31d0faa | 2018-07-20 09:52:41 | [diff] [blame] | 2237 | # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 2238 | # TODO(maruel): Remove, https://crbug.com/851596 |
| 2239 | { |
| 2240 | 'name': 'luci-go_win', |
| 2241 | 'pattern': '.', |
| 2242 | 'condition': 'host_os == "win"', |
| 2243 | 'action': [ 'python', |
| 2244 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2245 | '--no_resume', |
| 2246 | '--no_auth', |
| 2247 | '--bucket', 'chromium-luci', |
| 2248 | '-d', 'src/tools/luci-go/win64', |
| 2249 | ], |
| 2250 | }, |
| 2251 | { |
| 2252 | 'name': 'luci-go_mac', |
| 2253 | 'pattern': '.', |
| 2254 | 'condition': 'host_os == "mac"', |
| 2255 | 'action': [ 'python', |
| 2256 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2257 | '--no_resume', |
| 2258 | '--no_auth', |
| 2259 | '--bucket', 'chromium-luci', |
| 2260 | '-d', 'src/tools/luci-go/mac64', |
| 2261 | ], |
| 2262 | }, |
| 2263 | { |
| 2264 | 'name': 'luci-go_linux', |
| 2265 | 'pattern': '.', |
| 2266 | 'condition': 'host_os == "linux"', |
| 2267 | 'action': [ 'python', |
| 2268 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2269 | '--no_resume', |
| 2270 | '--no_auth', |
| 2271 | '--bucket', 'chromium-luci', |
| 2272 | '-d', 'src/tools/luci-go/linux64', |
| 2273 | ], |
| 2274 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 2275 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2276 | 'name': 'apache_win32', |
| 2277 | 'pattern': '\\.sha1', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2278 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2279 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2280 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2281 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2282 | '--directory', |
| 2283 | '--recursive', |
| 2284 | '--no_auth', |
| 2285 | '--num_threads=16', |
| 2286 | '--bucket', 'chromium-apache-win32', |
| 2287 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 2288 | ], |
| 2289 | }, |
| 2290 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2291 | 'name': 'msan_chained_origins', |
| 2292 | 'pattern': '.', |
| 2293 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2294 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2295 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2296 | "--no_resume", |
| 2297 | "--no_auth", |
| 2298 | "--bucket", "chromium-instrumented-libraries", |
| 2299 | "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1", |
| 2300 | ], |
| 2301 | }, |
| 2302 | { |
| 2303 | 'name': 'msan_no_origins', |
| 2304 | 'pattern': '.', |
| 2305 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2306 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2307 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2308 | "--no_resume", |
| 2309 | "--no_auth", |
| 2310 | "--bucket", "chromium-instrumented-libraries", |
| 2311 | "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1", |
| 2312 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 2313 | }, |
| 2314 | { |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2315 | "name": "wasm_fuzzer", |
| 2316 | "pattern": ".", |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2317 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2318 | 'src/third_party/depot_tools/download_from_google_storage.py', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2319 | "--no_resume", |
| 2320 | "--no_auth", |
| 2321 | "-u", |
| 2322 | "--bucket", "v8-wasm-fuzzer", |
ahaas | ec987e5d | 2017-05-17 11:25:36 | [diff] [blame] | 2323 | "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1", |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2324 | ], |
| 2325 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2326 | |
| 2327 | # Pull down Node binaries for WebUI toolchain. |
| 2328 | { |
| 2329 | 'name': 'node_linux64', |
| 2330 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2331 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2332 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2333 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2334 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2335 | '--extract', |
| 2336 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 2337 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2338 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 2339 | ], |
| 2340 | }, |
| 2341 | { |
| 2342 | 'name': 'node_mac', |
| 2343 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2344 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2345 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2346 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2347 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2348 | '--extract', |
| 2349 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 2350 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2351 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 2352 | ], |
| 2353 | }, |
| 2354 | { |
| 2355 | 'name': 'node_win', |
| 2356 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2357 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2358 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2359 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2360 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2361 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 2362 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2363 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 2364 | ], |
| 2365 | }, |
| 2366 | |
| 2367 | # Pull down NPM dependencies for WebUI toolchain. |
| 2368 | { |
| 2369 | 'name': 'webui_node_modules', |
| 2370 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2371 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2372 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2373 | '--no_resume', |
| 2374 | '--extract', |
| 2375 | '--no_auth', |
| 2376 | '--bucket', 'chromium-nodejs', |
| 2377 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 2378 | ], |
| 2379 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 2380 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2381 | # Download Telemetry's binary dependencies via conditionals |
| 2382 | { |
| 2383 | 'name': 'checkout_telemetry_binary_dependencies', |
| 2384 | 'condition': 'checkout_telemetry_dependencies', |
| 2385 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2386 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2387 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 2388 | ], |
| 2389 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 2390 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2391 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 2392 | { |
| 2393 | 'name': 'checkout_telemetry_benchmark_deps', |
| 2394 | 'condition': 'checkout_telemetry_dependencies', |
| 2395 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 2396 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2397 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 2398 | '-f', |
| 2399 | ], |
| 2400 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2401 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2402 | # This is used to ensure that all network operations are properly |
| 2403 | # annotated so we can document what they're for. |
| 2404 | { |
| 2405 | 'name': 'tools_traffic_annotation_linux', |
| 2406 | 'pattern': '.', |
| 2407 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2408 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2409 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2410 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2411 | '--no_auth', |
| 2412 | '--num_threads=4', |
| 2413 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2414 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 2415 | ], |
| 2416 | }, |
| 2417 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2418 | # This is used to ensure that all network operations are properly |
| 2419 | # annotated so we can document what they're for. |
| 2420 | { |
| 2421 | 'name': 'tools_traffic_annotation_windows', |
| 2422 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 2423 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2424 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2425 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2426 | '--no_resume', |
| 2427 | '--no_auth', |
| 2428 | '--num_threads=4', |
| 2429 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2430 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 2431 | ], |
| 2432 | }, |
| 2433 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2434 | # Pull down Zucchini test data. |
| 2435 | { |
| 2436 | 'name': 'zucchini_testdata', |
| 2437 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2438 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2439 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2440 | '--no_resume', |
| 2441 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 2442 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 2443 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 2444 | '--recursive', |
| 2445 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2446 | ], |
| 2447 | }, |
| 2448 | |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2449 | { |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 2450 | # We used to use src as a CIPD root. We moved it to a different directory |
| 2451 | # in crrev.com/c/930178 but left the clobber here to ensure that that CL |
| 2452 | # could be reverted safely. This can be safely removed once crbug.com/794764 |
| 2453 | # is resolved. |
| 2454 | 'name': 'Android Clobber Deprecated CIPD Root', |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 2455 | 'pattern': '.', |
| 2456 | 'condition': 'checkout_android', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 2457 | 'action': ['src/build/cipd/clobber_cipd_root.py', |
| 2458 | '--root', 'src', |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 2459 | ], |
| 2460 | }, |
| 2461 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2462 | 'name': 'Fetch Android AFDO profile', |
| 2463 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 2464 | 'condition': 'checkout_android or checkout_linux', |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2465 | 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'], |
| 2466 | }, |
| 2467 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2468 | # This downloads SDK extras and puts them in the |
| 2469 | # third_party/android_tools/sdk/extras directory. |
| 2470 | 'name': 'sdkextras', |
| 2471 | 'pattern': '.', |
| 2472 | 'condition': 'checkout_android', |
| 2473 | # When adding a new sdk extras package to download, add the package |
| 2474 | # directory and zip file to .gitignore in third_party/android_tools. |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2475 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2476 | 'src/build/android/play_services/update.py', |
| 2477 | 'download' |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2478 | ], |
| 2479 | }, |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 2480 | # Download checkstyle for use in PRESUBMIT for Java changes. |
| 2481 | { |
| 2482 | 'name': 'checkstyle', |
| 2483 | 'pattern': '.', |
| 2484 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 2485 | 'condition': 'checkout_android or checkout_linux', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2486 | 'action': [ 'python', |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 2487 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2488 | '--no_resume', |
| 2489 | '--no_auth', |
| 2490 | '--bucket', 'chromium-android-tools/checkstyle', |
| 2491 | '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1' |
| 2492 | ], |
| 2493 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2494 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2495 | 'name': 'gvr_static_shim_android_arm', |
| 2496 | 'pattern': '\\.sha1', |
| 2497 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2498 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2499 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2500 | '--no_resume', |
| 2501 | '--no_auth', |
| 2502 | '--bucket', 'chromium-gvr-static-shim', |
| 2503 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2504 | ], |
| 2505 | }, |
| 2506 | { |
| 2507 | 'name': 'gvr_static_shim_android_arm64', |
| 2508 | 'pattern': '\\.sha1', |
| 2509 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2510 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2511 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2512 | '--no_resume', |
| 2513 | '--no_auth', |
| 2514 | '--bucket', 'chromium-gvr-static-shim', |
| 2515 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1', |
thakis | 973bb243 | 2017-05-24 15:27:14 | [diff] [blame] | 2516 | ], |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2517 | }, |
| 2518 | { |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2519 | 'name': 'gvr_static_shim_custom_libcxx_android_arm', |
| 2520 | 'pattern': '\\.sha1', |
| 2521 | 'condition': 'checkout_android', |
| 2522 | 'action': [ 'python', |
| 2523 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2524 | '--no_resume', |
| 2525 | '--no_auth', |
| 2526 | '--bucket', 'chromium-gvr-static-shim', |
| 2527 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_custom_libcxx_arm.a.sha1', |
| 2528 | ], |
| 2529 | }, |
| 2530 | { |
| 2531 | 'name': 'gvr_static_shim_custom_libcxx_android_arm64', |
| 2532 | 'pattern': '\\.sha1', |
| 2533 | 'condition': 'checkout_android', |
| 2534 | 'action': [ 'python', |
| 2535 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2536 | '--no_resume', |
| 2537 | '--no_auth', |
| 2538 | '--bucket', 'chromium-gvr-static-shim', |
| 2539 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_custom_libcxx_arm64.a.sha1', |
| 2540 | ], |
| 2541 | }, |
| 2542 | { |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2543 | 'name': 'vr_assets', |
| 2544 | 'pattern': '.', |
Tibor Goldschwendt | ad8048f | 2018-02-05 18:26:00 | [diff] [blame] | 2545 | 'condition': 'checkout_src_internal and checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2546 | 'action': ['python', |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2547 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2548 | '--bucket', 'chrome-vr-assets', |
| 2549 | '--recursive', |
| 2550 | '--directory', |
Tibor Goldschwendt | fd6806b8 | 2018-02-14 22:32:50 | [diff] [blame] | 2551 | 'src/chrome/browser/resources/vr/assets/google_chrome', |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2552 | ], |
| 2553 | }, |
| 2554 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2555 | 'name': 'vr_controller_test_api', |
| 2556 | 'pattern': '\\.sha1', |
| 2557 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2558 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2559 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2560 | '--no_resume', |
| 2561 | '--no_auth', |
| 2562 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 2563 | '-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] | 2564 | ], |
| 2565 | }, |
| 2566 | # Download VR test APKs only if the environment variable is set |
| 2567 | { |
| 2568 | 'name': 'vr_test_apks', |
| 2569 | 'pattern': '.', |
| 2570 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2571 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2572 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2573 | ], |
| 2574 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 2575 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 2576 | { |
| 2577 | 'name': 'ar_test_apks', |
| 2578 | 'pattern': '.', |
| 2579 | 'condition': 'checkout_android', |
| 2580 | 'action': [ 'python', |
| 2581 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 2582 | ], |
| 2583 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2584 | # Download Oculus SDK if appropriate. |
| 2585 | { |
| 2586 | 'name': 'libovr', |
| 2587 | 'pattern': '.', |
| 2588 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2589 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2590 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2591 | '--bucket', 'chrome-oculus-sdk', |
| 2592 | '--recursive', |
| 2593 | '--num_threads=10', |
| 2594 | '--directory', |
| 2595 | 'src/third_party/libovr/src', |
| 2596 | ], |
| 2597 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2598 | { |
| 2599 | # Pull doclava binaries if building for Android. |
| 2600 | 'name': 'doclava', |
| 2601 | 'pattern': '.', |
| 2602 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2603 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2604 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2605 | ], |
| 2606 | }, |
| 2607 | |
| 2608 | { |
| 2609 | 'name': 'fuchsia_sdk', |
| 2610 | 'pattern': '.', |
| 2611 | 'condition': 'checkout_fuchsia', |
| 2612 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2613 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2614 | 'src/build/fuchsia/update_sdk.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2615 | ], |
| 2616 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2617 | |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2618 | # Download CrOS simplechrome artifacts. The first hooks is for boards that |
| 2619 | # support VM images, the second hook for all other boards. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2620 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2621 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2622 | 'pattern': '.', |
| 2623 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2624 | 'condition': '((checkout_chromeos and host_os == "linux") and cros_download_vm) and ("{cros_board}" != "")', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2625 | 'action': [ |
| 2626 | 'src/third_party/chromite/bin/cros', |
| 2627 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 2628 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2629 | '--use-external-config', |
| 2630 | '--nogn-gen', |
| 2631 | '--download-vm', |
| 2632 | '--board={cros_board}', |
| 2633 | '--cache-dir=src/build/cros_cache/', |
Benjamin Pastene | fab64fff | 2018-04-18 22:21:16 | [diff] [blame] | 2634 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 2635 | # enough to eject old toolchains from the cache. |
| 2636 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2637 | '--log-level=error', |
| 2638 | 'exit', |
| 2639 | ], |
| 2640 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2641 | { |
| 2642 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 2643 | 'pattern': '.', |
| 2644 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2645 | 'condition': '((checkout_chromeos and host_os == "linux") and not cros_download_vm) and ("{cros_board}" != "")', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2646 | 'action': [ |
| 2647 | 'src/third_party/chromite/bin/cros', |
| 2648 | 'chrome-sdk', |
| 2649 | '--nogoma', |
| 2650 | '--use-external-config', |
| 2651 | '--nogn-gen', |
| 2652 | '--board={cros_board}', |
| 2653 | '--cache-dir=src/build/cros_cache/', |
| 2654 | '--log-level=error', |
| 2655 | 'exit', |
| 2656 | ], |
| 2657 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2658 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2659 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 2660 | { |
| 2661 | 'name': 'vpython_common', |
| 2662 | 'pattern': '.', |
| 2663 | 'action': [ 'vpython', |
| 2664 | '-vpython-spec', 'src/.vpython', |
| 2665 | '-vpython-tool', 'install', |
| 2666 | ], |
| 2667 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2668 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 2669 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2670 | recursedeps = [ |
bungeman | 1835f98 | 2016-09-28 18:33:22 | [diff] [blame] | 2671 | # buildtools provides clang_format, libc++, and libc++abi |
| 2672 | 'src/buildtools', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2673 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 2674 | "src/third_party/angle", |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 2675 | # src-internal has its own DEPS file to pull additional internal repos |
| 2676 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2677 | ] |