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