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