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