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