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