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', |
Rohit Rao | 2b70cbc0 | 2019-02-21 16:31:27 | [diff] [blame] | 34 | 'checkout_ios_webkit', |
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 | |
Michael Moss | c09fc5c | 2019-01-18 08:00:03 | [diff] [blame] | 52 | # By default, don't check out android. Will be overridden by gclient |
| 53 | # variables. |
| 54 | # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 55 | 'checkout_android': False, |
| 56 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 57 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 58 | # build ARC++ support libraries. |
| 59 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 60 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 61 | # By default, do not check out Chromium autofill captured sites test |
| 62 | # dependencies. These dependencies include very large numbers of very |
| 63 | # large web capture files. Captured sites test dependencies are also |
| 64 | # restricted to Googlers only. |
| 65 | 'checkout_chromium_autofill_test_dependencies': False, |
| 66 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 67 | # By default, do not check out Chromium password manager captured sites test |
| 68 | # dependencies. These dependencies include very large numbers of very |
| 69 | # large web capture files. Captured sites test dependencies are also |
| 70 | # restricted to Googlers only. |
| 71 | 'checkout_chromium_password_manager_test_dependencies': False, |
| 72 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 73 | # Check out and download nacl by default. This can be disabled e.g. with |
| 74 | # custom_vars. |
| 75 | 'checkout_nacl': True, |
| 76 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 77 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 78 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 79 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 80 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 81 | # Fetch the additional packages and files needed to run all of the |
| 82 | # telemetry tests. This is false by default as some stuff is only |
| 83 | # privately accessible. |
| 84 | 'checkout_telemetry_dependencies': False, |
| 85 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 86 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 87 | # process the raw profiles produced by instrumented targets (built with |
| 88 | # the gn arg 'use_clang_coverage'). |
| 89 | 'checkout_clang_coverage_tools': False, |
| 90 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 91 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 92 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 93 | |
Takuto Ikuta | e306cbad | 2018-12-06 16:43:55 | [diff] [blame] | 94 | 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| 95 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 96 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 97 | # By default, do not check out WebKit for iOS, as it is not needed unless |
| 98 | # running against ToT WebKit rather than system WebKit. This can be overridden |
| 99 | # e.g. with custom_vars. |
| 100 | 'checkout_ios_webkit': False, |
| 101 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 102 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 103 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 104 | 'cros_board': '', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 105 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 106 | # as an expression. |
| 107 | 'cros_download_vm': '"{cros_board}" == "amd64-generic"', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 108 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 109 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 110 | 'angle_root': 'src/third_party/angle', |
| 111 | |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 112 | # luci-go CIPD package version. |
Takuto Ikuta | 4541db87 | 2018-12-12 18:03:10 | [diff] [blame] | 113 | 'luci_go': 'git_revision:25958d48e89e980e2a97daeddc977fb5e2e1fb8c', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 114 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 115 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 116 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 117 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 118 | 'chromium_git': 'https://chromium.googlesource.com', |
| 119 | 'dawn_git': 'https://dawn.googlesource.com', |
| 120 | 'pdfium_git': 'https://pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 121 | 'quiche_git': 'https://quiche.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 122 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 123 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 124 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 125 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 126 | # the commit queue can handle CLs rolling sfntly |
| 127 | # and whatever else without interference from each other. |
Lei Zhang | 6705d19 | 2019-01-08 20:30:06 | [diff] [blame] | 128 | 'sfntly_revision': 'e24c73130c663c9f329e78f5ca3fd5bd83b02622', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 129 | # Three lines of non-changing comments so that |
| 130 | # the commit queue can handle CLs rolling Skia |
| 131 | # and whatever else without interference from each other. |
chromium-autoroll | 127c1d81f | 2019-03-20 21:40:33 | [diff] [blame] | 132 | 'skia_revision': '7e2c0614a2fd08e418b789939dfdad9b76e70fa7', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 133 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 134 | # the commit queue can handle CLs rolling V8 |
| 135 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | ce20821 | 2019-03-20 19:19:06 | [diff] [blame] | 136 | 'v8_revision': 'da7a3d8e0374cb531d9ce0a3215650eccdd9a8f0', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 137 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 138 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 139 | # and whatever else without interference from each other. |
Marc-Antoine Ruel | fe66e1a3 | 2019-03-19 19:29:44 | [diff] [blame] | 140 | 'swarming_revision': 'aa60736aded9fc32a0e21a81f5fc51f6009d01f3', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 141 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 142 | # the commit queue can handle CLs rolling ANGLE |
| 143 | # and whatever else without interference from each other. |
chromium-autoroll | 2f1e9aec | 2019-03-20 20:21:05 | [diff] [blame] | 144 | 'angle_revision': '12a1fe4a5b7a3d4229b971ae9a5ede4c3c08237c', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 145 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 146 | # the commit queue can handle CLs rolling SwiftShader |
| 147 | # and whatever else without interference from each other. |
chromium-autoroll | 7709b92 | 2019-03-21 00:48:29 | [diff] [blame] | 148 | 'swiftshader_revision': 'c296806411fb97eeb756c02378ac9b33b4feaada', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 149 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 150 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 151 | # and whatever else without interference from each other. |
chromium-autoroll | bdaaf4f | 2019-03-20 02:37:04 | [diff] [blame] | 152 | 'pdfium_revision': 'f79e15b85174760e78a2fb0cd9f7b251eb19e6a2', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 153 | # Three lines of non-changing comments so that |
| 154 | # the commit queue can handle CLs rolling openmax_dl |
| 155 | # and whatever else without interference from each other. |
Nico Weber | 6034a79 | 2018-12-21 15:59:16 | [diff] [blame] | 156 | 'openmax_dl_revision': '3b18bf8338abbb9cc0dd5de4c69609c38eee9c8b', |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 157 | # Three lines of non-changing comments so that |
| 158 | # the commit queue can handle CLs rolling BoringSSL |
| 159 | # and whatever else without interference from each other. |
David Benjamin | 0cf6267 | 2019-02-11 20:30:55 | [diff] [blame] | 160 | # |
| 161 | # Note this revision should be updated with |
| 162 | # third_party/boringssl/roll_boringssl.py, not roll-dep. |
David Benjamin | f33d695 | 2019-03-16 04:01:06 | [diff] [blame] | 163 | 'boringssl_revision': 'aadcce380fe9e5e17ff38f8471e956463fc4df21', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 164 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 165 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 166 | # and whatever else without interference from each other. |
Elly Fong-Jones | 86b7e2a | 2019-02-21 17:02:01 | [diff] [blame] | 167 | 'google_toolbox_for_mac_revision': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 168 | # Three lines of non-changing comments so that |
| 169 | # the commit queue can handle CLs rolling lighttpd |
| 170 | # and whatever else without interference from each other. |
| 171 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 172 | # Three lines of non-changing comments so that |
| 173 | # the commit queue can handle CLs rolling lss |
| 174 | # and whatever else without interference from each other. |
Torne (Richard Coles) | 9a6106e | 2017-10-20 17:48:17 | [diff] [blame] | 175 | 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 176 | # Three lines of non-changing comments so that |
| 177 | # the commit queue can handle CLs rolling NaCl |
| 178 | # and whatever else without interference from each other. |
chromium-autoroll | eb15169 | 2019-03-19 15:01:11 | [diff] [blame] | 179 | 'nacl_revision': '7d24fb15d81f95ed30dde0c04b68584749709657', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 180 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 181 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 182 | # and whatever else without interference from each other. |
Ben Wagner | 25b03fb | 2019-03-06 15:41:54 | [diff] [blame] | 183 | 'freetype_revision': '31757f969fba60d75404f31e8f1168bef5011770', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 184 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 185 | # the commit queue can handle CLs rolling HarfBuzz |
| 186 | # and whatever else without interference from each other. |
Dominik Röttsches | 674f994 | 2019-03-20 09:33:18 | [diff] [blame] | 187 | 'harfbuzz_revision': 'bcb4e505d6ffe33e3268a06698e75d6be0e64957', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 188 | # Three lines of non-changing comments so that |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 189 | # the commit queue can handle CLs rolling Emoji Segmenter |
| 190 | # and whatever else without interference from each other. |
| 191 | 'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e', |
| 192 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 193 | # the commit queue can handle CLs rolling catapult |
| 194 | # and whatever else without interference from each other. |
chromium-autoroll | b862fec5 | 2019-03-20 23:38:56 | [diff] [blame] | 195 | 'catapult_revision': 'aa79e2674359513ec55f7a0e7369675bebac4a77', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 196 | # Three lines of non-changing comments so that |
| 197 | # the commit queue can handle CLs rolling libFuzzer |
| 198 | # and whatever else without interference from each other. |
Jonathan Metzman | 2e80302 | 2019-02-28 04:56:00 | [diff] [blame] | 199 | 'libfuzzer_revision': 'e847d8a9b47158695593d5693b0f69250472b229', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 200 | # Three lines of non-changing comments so that |
| 201 | # the commit queue can handle CLs rolling devtools-node-modules |
| 202 | # and whatever else without interference from each other. |
Will Chen | fa87418 | 2018-01-03 19:03:26 | [diff] [blame] | 203 | 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 204 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 205 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 206 | # and whatever else without interference from each other. |
Jonathan Metzman | 85809f64 | 2019-01-24 22:55:58 | [diff] [blame] | 207 | 'libprotobuf-mutator': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 208 | # Three lines of non-changing comments so that |
| 209 | # the commit queue can handle CLs rolling feed |
| 210 | # and whatever else without interference from each other. |
Pavel Yatsuk | f713b97 | 2019-03-11 23:15:03 | [diff] [blame] | 211 | 'feed_revision': '9e68039a0d2fcd72eaff19697262be4ab4b4eb22', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 212 | # Three lines of non-changing comments so that |
| 213 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 214 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 215 | 'android_sdk_build-tools_version': 'DLK621q5_Bga5EsOr7cp6bHWWxFKx6UHLu_Ix_m3AckC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 216 | # Three lines of non-changing comments so that |
| 217 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 218 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 219 | 'android_sdk_emulator_version': 'ki7EDQRAiZAUYlnTWR1XmI6cJTk65fJ-DNZUU1zrtS8C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 220 | # Three lines of non-changing comments so that |
| 221 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 222 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 223 | 'android_sdk_extras_version': 'iIwhhDox5E-mHgwUhCz8JACWQCpUjdqt5KTY9VLugKQC', |
| 224 | # Three lines of non-changing comments so that |
| 225 | # the commit queue can handle CLs rolling android_sdk_patcher_version |
| 226 | # and whatever else without interference from each other. |
| 227 | 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 228 | # Three lines of non-changing comments so that |
| 229 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 230 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 231 | 'android_sdk_platform-tools_version': '4Y2Cb2LGzoc-qt-oIUIlhySotJaKeE3ELFedSVe6Uk8C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 232 | # Three lines of non-changing comments so that |
| 233 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 234 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 235 | 'android_sdk_platforms_version': 'Kg2t9p0YnQk8bldUv4VA3o156uPXLUfIFAmVZ-Gm5ewC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 236 | # Three lines of non-changing comments so that |
| 237 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 238 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 239 | 'android_sdk_sources_version': 'K9uEn3JvNELEVjjVK_GQD3ZQD3rqAnJSxCWxjmUmRkgC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 240 | # Three lines of non-changing comments so that |
| 241 | # the commit queue can handle CLs rolling android_sdk_tools_version |
| 242 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 243 | 'android_sdk_tools_version': 'wYcRQC2WHsw2dKWs4EA7fw9Qsyzu1ds1_fRjKmGxe5QC', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 244 | # Three lines of non-changing comments so that |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 245 | # the commit queue can handle CLs rolling android_sdk_tools-lint_version |
| 246 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 247 | 'android_sdk_tools-lint_version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC', |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 248 | # Three lines of non-changing comments so that |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 249 | # the commit queue can handle CLs rolling feed |
| 250 | # and whatever else without interference from each other. |
chromium-autoroll | 824740c | 2019-03-19 15:39:52 | [diff] [blame] | 251 | 'spv_tools_revision': 'e1a76269b649b7263266c1197622468dae9950b3', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 252 | # Three lines of non-changing comments so that |
| 253 | # the commit queue can handle CLs rolling feed |
| 254 | # and whatever else without interference from each other. |
chromium-autoroll | 8389c47 | 2019-03-17 07:30:15 | [diff] [blame] | 255 | 'spv_headers_revision': '111a25e4ae45e2b4d7c18415e1d6884712b958c4', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 256 | # Three lines of non-changing comments so that |
| 257 | # the commit queue can handle CLs rolling feed |
| 258 | # and whatever else without interference from each other. |
| 259 | 'spirv_cross_revision': '69b034f26e28a76a6f4e5d9521123072b24d7ea2', |
| 260 | # Three lines of non-changing comments so that |
| 261 | # the commit queue can handle CLs rolling feed |
| 262 | # and whatever else without interference from each other. |
Frank Henigman | eadb0a6b | 2019-01-29 23:29:25 | [diff] [blame] | 263 | 'shaderc_revision': '6ff17fe32fd2e0b6bc1890befaf036d526b24540', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 264 | # Three lines of non-changing comments so that |
| 265 | # the commit queue can handle CLs rolling feed |
| 266 | # and whatever else without interference from each other. |
chromium-autoroll | 18bafcb | 2019-03-19 15:28:24 | [diff] [blame] | 267 | 'dawn_revision': '54e4d47db4910ebd1ffce0247b60d4e6f984774f', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 268 | # Three lines of non-changing comments so that |
| 269 | # the commit queue can handle CLs rolling feed |
| 270 | # and whatever else without interference from each other. |
Ryan Hamilton | 840358c | 2019-03-19 19:00:35 | [diff] [blame] | 271 | 'quiche_revision': 'd5d13c2a81b5b504c1bf3308b12c5479a1eb8d58', |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 272 | # Three lines of non-changing comments so that |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 273 | # the commit queue can handle CLs rolling ios_webkit |
| 274 | # and whatever else without interference from each other. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 275 | 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 276 | |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 277 | # TODO(crbug.com/941824): The values below need to be kept in sync |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 278 | # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| 279 | # update the other. There is a presubmit check that checks that |
| 280 | # you've done so; if you are adding new tools to //buildtools and |
| 281 | # hence new revisions to this list, make sure you update the |
| 282 | # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| 283 | # revisions. |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 284 | |
| 285 | # GN CIPD package version. |
| 286 | 'gn_version': 'git_revision:0790d3043387c762a6bacb1ae0a9ebe883188ab2', |
| 287 | |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 288 | # Also, if you change these, make sure you update the svn_revisions in |
| 289 | # //buildtools/deps_revisions.gni. |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 290 | 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Tom Anderson | f05d184 | 2019-03-20 20:32:42 | [diff] [blame] | 291 | 'libcxx_revision': '9009625c821e9580bfece732c25bac1cc9c5a7c2', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 292 | 'libcxxabi_revision': '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
| 293 | 'libunwind_revision': '69d9b84cca8354117b9fe9705a4430d789ee599b', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 294 | } |
| 295 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 296 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 297 | # If you need to add a new host, contact chrome infrastracture team. |
| 298 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 299 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 300 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 301 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 302 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 303 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 304 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 305 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 306 | 'pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 307 | 'quiche.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 308 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 309 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 310 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 311 | ] |
| 312 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 313 | deps = { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 314 | 'src/buildtools/clang_format/script': |
| 315 | Var('chromium_git') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| 316 | Var('clang_format_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 317 | 'src/buildtools/linux64': { |
| 318 | 'packages': [ |
| 319 | { |
| 320 | 'package': 'gn/gn/linux-amd64', |
| 321 | 'version': Var('gn_version'), |
| 322 | } |
| 323 | ], |
| 324 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 325 | 'condition': 'host_os == "linux"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 326 | }, |
| 327 | 'src/buildtools/mac': { |
| 328 | 'packages': [ |
| 329 | { |
| 330 | 'package': 'gn/gn/mac-amd64', |
| 331 | 'version': Var('gn_version'), |
| 332 | } |
| 333 | ], |
| 334 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 335 | 'condition': 'host_os == "mac"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 336 | }, |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 337 | 'src/buildtools/third_party/libc++/trunk': |
| 338 | Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + |
| 339 | Var('libcxx_revision'), |
| 340 | 'src/buildtools/third_party/libc++abi/trunk': |
| 341 | Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + |
| 342 | Var('libcxxabi_revision'), |
| 343 | 'src/buildtools/third_party/libunwind/trunk': |
| 344 | Var('chromium_git') + '/external/llvm.org/libunwind.git' + '@' + |
| 345 | Var('libunwind_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 346 | 'src/buildtools/win': { |
| 347 | 'packages': [ |
| 348 | { |
| 349 | 'package': 'gn/gn/windows-amd64', |
| 350 | 'version': Var('gn_version'), |
| 351 | } |
| 352 | ], |
| 353 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 354 | 'condition': 'host_os == "win"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 355 | }, |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 356 | |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 357 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | 10d6bece | 2018-11-02 21:23:09 | [diff] [blame] | 358 | Var('chromium_git') + '/media_router.git' + '@' + '29324b698ccd8920bc81c71d42dadc6310f0ad0f', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 359 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 360 | 'src/android_webview/tools/cts_archive': { |
| 361 | 'packages': [ |
| 362 | { |
| 363 | 'package': 'chromium/android_webview/tools/cts_archive', |
Andrew Luo | 7f823e86 | 2019-03-13 01:43:05 | [diff] [blame] | 364 | 'version': 'l0trR4Lsqa4L7CHKRozdQtTrOn2sMUU4b5wOxMc4JvEC', |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 365 | }, |
| 366 | ], |
| 367 | 'condition': 'checkout_android', |
| 368 | 'dep_type': 'cipd', |
| 369 | }, |
| 370 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 371 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 372 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 373 | 'condition': 'checkout_mac', |
| 374 | }, |
| 375 | |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 376 | 'src/tools/clang/dsymutil': { |
| 377 | 'packages': [ |
| 378 | { |
| 379 | 'package': 'chromium/llvm-build-tools/dsymutil', |
Elly Fong-Jones | 3a4d4e26 | 2019-03-20 14:42:14 | [diff] [blame] | 380 | 'version': 'OWlhXkmj18li3yhJk59Kmjbc5KdgLh56TwCd1qBdzlIC', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 381 | } |
| 382 | ], |
| 383 | 'condition': 'checkout_mac', |
| 384 | 'dep_type': 'cipd', |
| 385 | }, |
| 386 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 387 | 'src/chrome/test/data/autofill/captured_sites': { |
| 388 | 'packages': [ |
| 389 | { |
| 390 | 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
Yiming Zhou | 1f5a337 | 2019-03-21 00:44:16 | [diff] [blame] | 391 | 'version': 'zh9Tqke-MCYlzcrTXhogU3H1dgx2YAZs9GG_PeemPsQC', |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 392 | } |
| 393 | ], |
| 394 | 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 395 | 'dep_type': 'cipd', |
| 396 | }, |
| 397 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 398 | 'src/chrome/test/data/password/captured_sites': { |
| 399 | 'packages': [ |
| 400 | { |
| 401 | 'package': 'chromium/chrome/test/data/password/captured_sites', |
| 402 | 'version': 'jYvTM_KjFi4v_BTqCfkAxM1XJ4PkMDSi31FgEDf0z9sC', |
| 403 | } |
| 404 | ], |
| 405 | 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 406 | 'dep_type': 'cipd', |
| 407 | }, |
| 408 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 409 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 410 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 411 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 412 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 413 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 414 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 415 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 416 | 'packages': [ |
| 417 | { |
| 418 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 419 | 'version': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 420 | }, |
| 421 | ], |
| 422 | 'condition': 'checkout_mac', |
| 423 | 'dep_type': 'cipd', |
| 424 | }, |
| 425 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 426 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 427 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 428 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 429 | 'src/chrome/test/data/xr/webxr_samples': |
bsheedy | f5e1fc4 | 2018-07-03 01:37:52 | [diff] [blame] | 430 | Var('chromium_git') + '/external/github.com/immersive-web/webxr-samples.git' + '@' + 'cf02f19c4ff6894705a9407722ab52551e010c60', |
bsheedy | a7a2860 | 2018-04-30 21:20:01 | [diff] [blame] | 431 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 432 | 'src/ios/third_party/earl_grey/src': { |
Rohit Rao | 218268a | 2019-01-03 17:17:48 | [diff] [blame] | 433 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '25fc49c5e57b8d25e4011efdd6a96024d3e6b96e', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 434 | 'condition': 'checkout_ios', |
| 435 | }, |
| 436 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 437 | 'src/ios/third_party/earl_grey2/src': { |
Lindsay Pasricha | f985f0a | 2019-03-04 19:15:19 | [diff] [blame] | 438 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'ad70b511da47793e27e77c1a69c7895e8403be45', |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 439 | 'condition': 'checkout_ios', |
| 440 | }, |
| 441 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 442 | 'src/ios/third_party/edo/src': { |
Rohit Rao | 76e3f160 | 2019-03-15 02:22:48 | [diff] [blame] | 443 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '57586e7213892461228ca5543fd37f89ca0e7591', |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 444 | 'condition': 'checkout_ios', |
| 445 | }, |
| 446 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 447 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 448 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 449 | 'condition': 'checkout_ios', |
| 450 | }, |
| 451 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 452 | 'src/ios/third_party/firebase': { |
| 453 | 'packages': [ |
| 454 | { |
| 455 | 'package': 'chromium/third_party/firebase_ios', |
Peter K. Lee | 4f7d3be | 2019-03-11 18:52:09 | [diff] [blame] | 456 | 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 457 | }, |
| 458 | ], |
| 459 | 'condition': 'checkout_ios', |
| 460 | 'dep_type': 'cipd', |
| 461 | }, |
| 462 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 463 | 'src/ios/third_party/fishhook/src': { |
| 464 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 465 | 'condition': 'checkout_ios', |
| 466 | }, |
| 467 | |
| 468 | 'src/ios/third_party/gcdwebserver/src': { |
| 469 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 470 | 'condition': 'checkout_ios', |
| 471 | }, |
| 472 | |
| 473 | 'src/ios/third_party/material_components_ios/src': { |
iOS Autoroller | bfcf35f | 2019-03-15 11:40:00 | [diff] [blame] | 474 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'd4fdb374214cfe2010d167338affd3fa9e67263c', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 475 | 'condition': 'checkout_ios', |
| 476 | }, |
| 477 | |
| 478 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 479 | '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] | 480 | 'condition': 'checkout_ios', |
| 481 | }, |
| 482 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 483 | 'src/ios/third_party/material_internationalization_ios/src': { |
iOS Autoroller | e05fdaf | 2018-12-13 05:28:55 | [diff] [blame] | 484 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + 'd8f32464ac97d5551c8db19de916170ae87cfa90', |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 485 | 'condition': 'checkout_ios', |
| 486 | }, |
| 487 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 488 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
| 489 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
| 490 | 'condition': 'checkout_ios', |
| 491 | }, |
| 492 | |
| 493 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 494 | '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] | 495 | 'condition': 'checkout_ios', |
| 496 | }, |
| 497 | |
| 498 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
iOS Autoroller | efb260a | 2018-12-06 02:20:00 | [diff] [blame] | 499 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '499b45d1895b565096302a209c0c728df03b95d4', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 500 | 'condition': 'checkout_ios', |
| 501 | }, |
| 502 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 503 | 'src/ios/third_party/motion_interchange_objc/src': { |
iOS Autoroller | d5b8633f | 2019-03-08 21:07:25 | [diff] [blame] | 504 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 505 | 'condition': 'checkout_ios', |
| 506 | }, |
| 507 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 508 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 0193585 | 2019-03-12 12:33:45 | [diff] [blame] | 509 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 510 | 'condition': 'checkout_ios', |
| 511 | }, |
| 512 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 513 | 'src/ios/third_party/motion_transitioning_objc/src': { |
iOS Autoroller | d650eff | 2019-03-09 04:12:38 | [diff] [blame] | 514 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '8f360fc6f016af373276f858796a5e9f73498af9', |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 515 | 'condition': 'checkout_ios', |
| 516 | }, |
| 517 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 518 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 519 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 520 | 'condition': 'checkout_ios', |
| 521 | }, |
| 522 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 523 | 'src/ios/third_party/webkit/src': { |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 524 | 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + |
| 525 | '@' + Var('ios_webkit_revision'), |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 526 | 'condition': 'checkout_ios and checkout_ios_webkit' |
| 527 | }, |
| 528 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 529 | 'src/media/cdm/api': |
Hans Wennborg | 38f372a | 2018-10-17 18:23:23 | [diff] [blame] | 530 | Var('chromium_git') + '/chromium/cdm.git' + '@' + '817c8005a57ea3ca417f767b3b3679601329afd8', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 531 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 532 | 'src/native_client': { |
| 533 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 534 | 'condition': 'checkout_nacl', |
| 535 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 536 | |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 537 | 'src/net/third_party/quiche/src': |
| 538 | Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| 539 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 540 | 'src/tools/luci-go': { |
| 541 | 'packages': [ |
| 542 | { |
| 543 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 544 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 545 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 546 | { |
| 547 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 548 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 549 | }, |
| 550 | { |
| 551 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 552 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 553 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 554 | ], |
| 555 | 'dep_type': 'cipd', |
| 556 | }, |
| 557 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 558 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 559 | # third_party/spirv-cross/src because its header files are at the root of |
| 560 | # the repository and dependencies include them like so: |
| 561 | # #include "spirv-cross/spirv_glsl.hpp" |
| 562 | 'src/third_party/spirv-cross/spirv-cross': |
| 563 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 564 | Var('spirv_cross_revision'), |
| 565 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 566 | 'src/third_party/spirv-headers/src': |
| 567 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 568 | Var('spv_headers_revision'), |
| 569 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 570 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 571 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 572 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 573 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 574 | 'src/third_party/shaderc/src': |
| 575 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 576 | Var('shaderc_revision'), |
| 577 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 578 | 'src/third_party/accessibility_test_framework': { |
| 579 | 'packages': [ |
| 580 | { |
| 581 | 'package': 'chromium/third_party/accessibility-test-framework', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 582 | 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 583 | }, |
| 584 | ], |
| 585 | 'condition': 'checkout_android', |
| 586 | 'dep_type': 'cipd', |
| 587 | }, |
| 588 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 589 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 590 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 591 | 'condition': 'checkout_android', |
| 592 | }, |
| 593 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 594 | 'src/third_party/android_ndk': { |
Peter Collingbourne | 69af524 | 2018-08-16 03:30:15 | [diff] [blame] | 595 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '4e2cea441bfd43f0863d14f57b1e1844260b9884', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 596 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 597 | }, |
| 598 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 599 | 'src/third_party/android_support_test_runner': { |
| 600 | 'packages': [ |
| 601 | { |
| 602 | 'package': 'chromium/third_party/android_support_test_runner', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 603 | 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 604 | }, |
| 605 | ], |
| 606 | 'condition': 'checkout_android', |
| 607 | 'dep_type': 'cipd', |
| 608 | }, |
| 609 | |
| 610 | 'src/third_party/android_system_sdk': { |
| 611 | 'packages': [ |
| 612 | { |
| 613 | 'package': 'chromium/third_party/android_system_sdk', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 614 | 'version': '0c0a94a9326c045c8aabb7fc418ea9c849b782f2', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 615 | }, |
| 616 | ], |
| 617 | 'condition': 'checkout_android', |
| 618 | 'dep_type': 'cipd', |
| 619 | }, |
| 620 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 621 | 'src/third_party/android_tools': { |
David 'Digit' Turner | 1d656f16 | 2019-02-01 20:33:48 | [diff] [blame] | 622 | 'url': Var('chromium_git') + '/android_tools.git' + '@' + '347a7c8078a009e98995985b7ab6ec6b35696dea', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 623 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 624 | }, |
| 625 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 626 | 'src/third_party/android_build_tools/aapt2': { |
| 627 | 'packages': [ |
| 628 | { |
Mohamed Heikal | 2747b4b | 2018-10-31 22:20:42 | [diff] [blame] | 629 | 'package': 'chromium/third_party/android_build_tools/aapt2', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 630 | 'version': 'XPNW95mgY7ws_5lNsyjlq7DowuughMNsRIGuGCT0basC', |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 631 | }, |
| 632 | ], |
| 633 | 'condition': 'checkout_android', |
| 634 | 'dep_type': 'cipd', |
| 635 | }, |
| 636 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 637 | 'src/third_party/android_build_tools/art': { |
| 638 | 'packages': [ |
| 639 | { |
| 640 | 'package': 'chromium/third_party/android_build_tools/art', |
| 641 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 642 | }, |
| 643 | ], |
| 644 | 'condition': 'checkout_android', |
| 645 | 'dep_type': 'cipd', |
| 646 | }, |
| 647 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 648 | 'src/third_party/android_build_tools/bundletool': { |
| 649 | 'packages': [ |
| 650 | { |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 651 | 'package': 'chromium/third_party/android_tools_bundletool', |
David 'Digit' Turner | dc75056 | 2019-01-17 11:49:27 | [diff] [blame] | 652 | 'version': 'GpDcZ4f-UcI4u6Kk7Ud-vtiLMltFr8vW63-NThsB5tEC', |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 653 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 654 | ], |
| 655 | 'condition': 'checkout_android', |
| 656 | 'dep_type': 'cipd', |
| 657 | }, |
| 658 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 659 | 'src/third_party/android_sdk/public': { |
| 660 | 'packages': [ |
| 661 | { |
| 662 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 663 | 'version': Var('android_sdk_build-tools_version'), |
| 664 | }, |
| 665 | { |
| 666 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 667 | 'version': Var('android_sdk_emulator_version'), |
| 668 | }, |
| 669 | { |
| 670 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 671 | 'version': Var('android_sdk_extras_version'), |
| 672 | }, |
| 673 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 674 | 'package': 'chromium/third_party/android_sdk/public/patcher', |
| 675 | 'version': Var('android_sdk_patcher_version'), |
| 676 | }, |
| 677 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 678 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 679 | 'version': Var('android_sdk_platform-tools_version'), |
| 680 | }, |
| 681 | { |
| 682 | 'package': 'chromium/third_party/android_sdk/public/platforms', |
| 683 | 'version': Var('android_sdk_platforms_version'), |
| 684 | }, |
| 685 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 686 | 'package': 'chromium/third_party/android_sdk/public/sources', |
| 687 | 'version': Var('android_sdk_sources_version'), |
| 688 | }, |
| 689 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 690 | 'package': 'chromium/third_party/android_sdk/public/tools', |
| 691 | 'version': Var('android_sdk_tools_version'), |
| 692 | }, |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 693 | { |
| 694 | 'package': 'chromium/third_party/android_sdk/public/tools-lint', |
| 695 | 'version': Var('android_sdk_tools-lint_version'), |
| 696 | }, |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 697 | ], |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 698 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 699 | 'dep_type': 'cipd', |
| 700 | }, |
| 701 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 702 | 'src/third_party/angle': |
| 703 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 704 | |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 705 | 'src/third_party/dav1d/libdav1d': |
Thomas Guilbert | 876ce83 | 2019-03-12 01:14:44 | [diff] [blame] | 706 | Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + 'ace3855a60379a76624bc01d74bae7fc40233c54', |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 707 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 708 | 'src/third_party/dawn': |
| 709 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 710 | |
| 711 | 'src/third_party/glfw/src': |
Corentin Wallez | 3a71757 | 2018-11-19 12:37:30 | [diff] [blame] | 712 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 713 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 714 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 715 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 716 | 'condition': 'checkout_android', |
| 717 | }, |
| 718 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 719 | 'src/third_party/apk-patch-size-estimator': { |
| 720 | 'packages': [ |
| 721 | { |
| 722 | 'package': 'chromium/third_party/apk-patch-size-estimator', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 723 | 'version': 'b603e99dca9b90d6a99519c232cd811878283b08', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 724 | }, |
| 725 | ], |
| 726 | 'condition': 'checkout_android', |
| 727 | 'dep_type': 'cipd', |
| 728 | }, |
| 729 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 730 | 'src/third_party/auto/src': { |
Peter Wen | 4689398 | 2018-01-18 16:53:46 | [diff] [blame] | 731 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82', |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 732 | 'condition': 'checkout_android', |
| 733 | }, |
| 734 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 735 | 'src/third_party/bazel': { |
| 736 | 'packages': [ |
| 737 | { |
| 738 | 'package': 'chromium/third_party/bazel', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 739 | 'version': '1794576f65a721eb0af320a0701e48d31f1b2415', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 740 | }, |
| 741 | ], |
| 742 | 'condition': 'checkout_android', |
| 743 | 'dep_type': 'cipd', |
| 744 | }, |
| 745 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 746 | 'src/third_party/bison': { |
| 747 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 748 | 'condition': 'checkout_win', |
| 749 | }, |
| 750 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 751 | 'src/third_party/boringssl/src': |
| 752 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 753 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 754 | 'src/third_party/bouncycastle': { |
| 755 | 'packages': [ |
| 756 | { |
| 757 | 'package': 'chromium/third_party/bouncycastle', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 758 | 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 759 | }, |
| 760 | ], |
| 761 | 'condition': 'checkout_android', |
| 762 | 'dep_type': 'cipd', |
| 763 | }, |
| 764 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 765 | 'src/third_party/breakpad/breakpad': |
Lei Zhang | 254dc44 | 2019-02-28 05:27:37 | [diff] [blame] | 766 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '19a8433a604e6105575c08529fc8e0b2947f5af5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 767 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 768 | 'src/third_party/byte_buddy': { |
| 769 | 'packages': [ |
| 770 | { |
| 771 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 772 | 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 773 | }, |
| 774 | ], |
| 775 | 'condition': 'checkout_android', |
| 776 | 'dep_type': 'cipd', |
| 777 | }, |
| 778 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 779 | 'src/third_party/catapult': |
| 780 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 781 | |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 782 | 'src/third_party/cct_dynamic_module/src': { |
Anna Malova | 0a90106 | 2019-01-23 16:27:31 | [diff] [blame] | 783 | 'url': Var('chromium_git') + '/dynamicmodule' + '@' + '441bbbf3ab849b8816bb2c827a51df9a81b83a4f', |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 784 | 'condition': 'checkout_android', |
| 785 | }, |
| 786 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 787 | 'src/third_party/ced/src': |
Jinsuk Kim | 69fae80a | 2019-02-22 01:26:38 | [diff] [blame] | 788 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 789 | |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 790 | 'src/third_party/checkstyle': { |
| 791 | 'packages': [ |
| 792 | { |
| 793 | 'package': 'chromium/third_party/checkstyle', |
| 794 | 'version': 'y17J5dqst1qkBcbJyie8jltB2oFOgaQjFZ5k9UpbbbwC', |
| 795 | }, |
| 796 | ], |
| 797 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 798 | 'condition': 'checkout_android or checkout_linux', |
| 799 | 'dep_type': 'cipd', |
| 800 | }, |
| 801 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 802 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 803 | 'src/third_party/chromite': { |
chromium-autoroll | ccdf78f | 2019-03-20 23:41:45 | [diff] [blame] | 804 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '82d1eb14f7f621b6f85be4584ccafc9b0dbc8878', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 805 | 'condition': 'checkout_linux', |
| 806 | }, |
| 807 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 808 | 'src/third_party/cld_3/src': |
Nico Weber | 818096d60 | 2019-02-22 15:12:54 | [diff] [blame] | 809 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'c0e79be769c519bd8f92cf6079be6155a1bff579', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 810 | |
| 811 | 'src/third_party/colorama/src': |
| 812 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 813 | |
| 814 | 'src/third_party/crc32c/src': |
Staphany Park | 5a0eb9a | 2019-03-02 01:39:31 | [diff] [blame] | 815 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 816 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 817 | # For Linux and Chromium OS. |
| 818 | 'src/third_party/cros_system_api': { |
Lutz Justen | 5a488e45 | 2019-03-11 11:43:29 | [diff] [blame] | 819 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + '4b79dfea832fad7ec8f0bbc4dfd30613e5049ee7', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 820 | 'condition': 'checkout_linux', |
| 821 | }, |
| 822 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 823 | 'src/third_party/custom_tabs_client/src': { |
Peter Beverloo | e62294c | 2019-03-07 12:31:18 | [diff] [blame] | 824 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'cea0bcafdebe711f0f83a5f05e07bc367ca18422', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 825 | 'condition': 'checkout_android', |
| 826 | }, |
| 827 | |
| 828 | 'src/third_party/depot_tools': |
chromium-autoroll | 62ebc084 | 2019-03-20 19:57:24 | [diff] [blame] | 829 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '5637e87bda2811565c3e4e58bd2274aeb3a4757e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 830 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 831 | 'src/third_party/devtools-node-modules': |
| 832 | 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] | 833 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 834 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 835 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 836 | |
| 837 | 'src/third_party/elfutils/src': { |
| 838 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 839 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 840 | }, |
| 841 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 842 | 'src/third_party/errorprone/lib': { |
Peter Wen | a9d8462a | 2018-04-25 17:18:12 | [diff] [blame] | 843 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 844 | 'condition': 'checkout_android', |
| 845 | }, |
| 846 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 847 | 'src/third_party/espresso': { |
| 848 | 'packages': [ |
| 849 | { |
| 850 | 'package': 'chromium/third_party/espresso', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 851 | 'version': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 852 | }, |
| 853 | ], |
| 854 | 'condition': 'checkout_android', |
| 855 | 'dep_type': 'cipd', |
| 856 | }, |
| 857 | |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 858 | 'src/third_party/feed/src': { |
| 859 | 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'), |
| 860 | 'condition': 'checkout_android', |
| 861 | }, |
| 862 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 863 | 'src/third_party/ffmpeg': |
[email protected] | b7788213 | 2019-03-19 16:51:51 | [diff] [blame] | 864 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f5b197fe669943e9e18d2181dc8aa696075620aa', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 865 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 866 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 867 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 868 | |
| 869 | 'src/third_party/flatbuffers/src': |
Nico Weber | 3d8d4b6 | 2019-02-25 21:46:43 | [diff] [blame] | 870 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '9bf9b18f0a705dfd6d50b98056463a55de6a1bf9', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 871 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 872 | # Used for embedded builds. CrOS & Linux use the system version. |
| 873 | 'src/third_party/fontconfig/src': { |
Tom Anderson | d9d67cb2 | 2018-09-13 00:46:29 | [diff] [blame] | 874 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'ba206df9b9a7ca300265f650842c1459ff7c634a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 875 | 'condition': 'checkout_linux', |
| 876 | }, |
| 877 | |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 878 | 'src/third_party/grpc/src': { |
Yuwei Huang | 2eac0bb | 2019-03-21 01:42:58 | [diff] [blame^] | 879 | 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + 'b245ad4ae810ed6bc13378421edfd3986a8ffac3', |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 880 | }, |
| 881 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 882 | 'src/third_party/freetype/src': |
| 883 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 884 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 885 | 'src/third_party/harfbuzz-ng/src': |
| 886 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 887 | |
Joey Scarr | 28fc3009 | 2019-02-04 10:10:20 | [diff] [blame] | 888 | 'src/third_party/emoji-segmenter/src': |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 889 | Var('chromium_git') + '/external/github.com/googlei18n/emoji-segmenter.git' + '@' + Var('emoji_segmenter_revision'), |
| 890 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 891 | # Chrome OS touchpad gestures library. |
| 892 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 893 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 894 | 'condition': 'checkout_linux', |
| 895 | }, |
| 896 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 897 | 'src/third_party/glslang/src': |
chromium-autoroll | 702eaec | 2019-03-19 16:03:03 | [diff] [blame] | 898 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + '5efb004d59601711cdf328c8a8bfbe7f333dc7a0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 899 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 900 | 'src/third_party/google_toolbox_for_mac/src': { |
| 901 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 902 | 'condition': 'checkout_ios or checkout_mac', |
| 903 | }, |
| 904 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 905 | 'src/third_party/google-truth': { |
| 906 | 'packages': [ |
| 907 | { |
| 908 | 'package': 'chromium/third_party/google-truth', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 909 | 'version': '4d6fe892fc3150ab40ef1d619baf0038859eb6d2', |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 910 | }, |
| 911 | ], |
| 912 | 'condition': 'checkout_android', |
| 913 | 'dep_type': 'cipd', |
| 914 | }, |
| 915 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 916 | 'src/third_party/googletest/src': |
Staphany Park | 343d8ac | 2019-03-18 19:48:01 | [diff] [blame] | 917 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '8b6d3f9c4a774bef3081195d422993323b6bb2e0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 918 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 919 | # GNU binutils assembler for x86-32. |
| 920 | 'src/third_party/gnu_binutils': { |
| 921 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 922 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 923 | }, |
| 924 | |
| 925 | 'src/third_party/gperf': { |
| 926 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 927 | 'condition': 'checkout_win', |
| 928 | }, |
| 929 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 930 | 'src/third_party/gson': { |
| 931 | 'packages': [ |
| 932 | { |
| 933 | 'package': 'chromium/third_party/gson', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 934 | 'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 935 | }, |
| 936 | ], |
| 937 | 'condition': 'checkout_android', |
| 938 | 'dep_type': 'cipd', |
| 939 | }, |
| 940 | |
| 941 | 'src/third_party/guava': { |
| 942 | 'packages': [ |
| 943 | { |
| 944 | 'package': 'chromium/third_party/guava', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 945 | 'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 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/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 953 | '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] | 954 | 'condition': 'checkout_android', |
| 955 | }, |
| 956 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 957 | 'src/third_party/arcore-android-sdk/src': { |
Piotr Bialecki | 342d5ef | 2019-01-16 21:44:17 | [diff] [blame] | 958 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '6fcebcbf021b53ceb254e58cce6d5d4a4214819d', |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 959 | 'condition': 'checkout_android', |
| 960 | }, |
| 961 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 962 | 'src/third_party/hamcrest': { |
| 963 | 'packages': [ |
| 964 | { |
| 965 | 'package': 'chromium/third_party/hamcrest', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 966 | 'version': '37eccfc658fe79695d6abb6dd497463c4372032f', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 967 | }, |
| 968 | ], |
| 969 | 'condition': 'checkout_android', |
| 970 | 'dep_type': 'cipd', |
| 971 | }, |
| 972 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 973 | 'src/third_party/hunspell_dictionaries': |
Kevin Bailey | 650d60a | 2019-02-22 17:46:47 | [diff] [blame] | 974 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'f7ce90e84f5aa9acfbc9b7ca04e567bf471e5bcd', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 975 | |
| 976 | 'src/third_party/icu': |
Frank Tang | 1bab0d1 | 2019-03-19 22:22:02 | [diff] [blame] | 977 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'b10cc9f714e6da621c94de0f1e6090c176f876ae', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 978 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 979 | 'src/third_party/icu4j': { |
| 980 | 'packages': [ |
| 981 | { |
| 982 | 'package': 'chromium/third_party/icu4j', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 983 | 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 984 | }, |
| 985 | ], |
| 986 | 'condition': 'checkout_android', |
| 987 | 'dep_type': 'cipd', |
| 988 | }, |
| 989 | |
| 990 | 'src/third_party/intellij': { |
| 991 | 'packages': [ |
| 992 | { |
| 993 | 'package': 'chromium/third_party/intellij', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 994 | 'version': '77c2721b024b36ee073402c08e6d8428c0295336', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 995 | }, |
| 996 | ], |
| 997 | 'condition': 'checkout_android', |
| 998 | 'dep_type': 'cipd', |
| 999 | }, |
| 1000 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1001 | 'src/third_party/jsoncpp/source': |
| 1002 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 1003 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1004 | 'src/third_party/jsr-305/src': { |
| 1005 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 1006 | 'condition': 'checkout_android', |
| 1007 | }, |
| 1008 | |
| 1009 | 'src/third_party/junit/src': { |
| 1010 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 1011 | 'condition': 'checkout_android', |
| 1012 | }, |
| 1013 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1014 | 'src/third_party/leveldatabase/src': |
Chris Mumford | 6b4373b | 2019-03-20 20:02:07 | [diff] [blame] | 1015 | Var('chromium_git') + '/external/leveldb.git' + '@' + '9ce30510d482f5b2fa2965201453f0fc914f700c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1016 | |
| 1017 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 1018 | 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] | 1019 | |
| 1020 | 'src/third_party/libaddressinput/src': |
Tom Anderson | 98c6712d | 2019-02-22 14:28:05 | [diff] [blame] | 1021 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '81e7ead903f5b71a326e0584f4325f106c804df1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1022 | |
Johann | 987d153 | 2018-11-19 22:07:27 | [diff] [blame] | 1023 | 'src/third_party/libaom/source/libaom': |
Wan-Teh Chang | 594b4733 | 2019-02-13 13:46:17 | [diff] [blame] | 1024 | Var('aomedia_git') + '/aom.git' + '@' + '625cded0550bb79efd10d98a9809a7ccd72a8f60', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 1025 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1026 | # Userspace interface to kernel DRM services. |
| 1027 | 'src/third_party/libdrm/src': { |
Robert Kroeger | 43841d2 | 2018-06-01 20:48:35 | [diff] [blame] | 1028 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0061b1f244574e615c415479725046ab2951f09a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1029 | 'condition': 'checkout_linux', |
| 1030 | }, |
| 1031 | |
| 1032 | # The libevdev library (Chrome OS version). |
| 1033 | 'src/third_party/libevdev/src': { |
| 1034 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 1035 | 'condition': 'checkout_linux', |
| 1036 | }, |
| 1037 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1038 | 'src/third_party/libjpeg_turbo': |
Leon Scroggins III | 3b964297 | 2018-08-29 20:37:04 | [diff] [blame] | 1039 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '61a2bbaa9aec89cb2c882d87ace6aba9aee49bb9', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1040 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1041 | 'src/third_party/liblouis/src': { |
David Tseng | 9b9ad8e | 2019-01-09 03:40:15 | [diff] [blame] | 1042 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '97ce1c67fccbd3668291b7e63c06161c095d49f2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1043 | 'condition': 'checkout_linux', |
| 1044 | }, |
| 1045 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1046 | 'src/third_party/libphonenumber/dist': |
| 1047 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 1048 | |
| 1049 | 'src/third_party/libprotobuf-mutator/src': |
| 1050 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 1051 | |
| 1052 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 1053 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1054 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1055 | # Android Explicit Synchronization. |
| 1056 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 1057 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1058 | 'condition': 'checkout_linux', |
| 1059 | }, |
| 1060 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1061 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | 411b850 | 2019-03-20 22:13:47 | [diff] [blame] | 1062 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '3e2b4b3d4803f20814d6b6cb3109efbc95249b60', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1063 | |
| 1064 | 'src/third_party/libwebm/source': |
James Zern | 62ef4ae | 2019-02-21 21:17:03 | [diff] [blame] | 1065 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1066 | |
| 1067 | 'src/third_party/libyuv': |
Frank Barchard | 1038c4e | 2018-10-26 01:11:50 | [diff] [blame] | 1068 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'b36c86fdfe746d7be904c3a565b047b24d58087e', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1069 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 1070 | 'src/third_party/lighttpd': { |
| 1071 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 1072 | 'condition': 'checkout_mac or checkout_win', |
| 1073 | }, |
| 1074 | |
| 1075 | 'src/third_party/lss': { |
| 1076 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 1077 | 'condition': 'checkout_android or checkout_linux', |
| 1078 | }, |
| 1079 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1080 | 'src/third_party/material_design_icons/src': { |
| 1081 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 1082 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 1083 | 'condition': 'checkout_ios', |
| 1084 | }, |
| 1085 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1086 | # GNU binutils assembler for x86-64. |
| 1087 | 'src/third_party/mingw-w64/mingw/bin': { |
| 1088 | '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] | 1089 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1090 | }, |
| 1091 | |
| 1092 | # Graphics buffer allocator for Chrome OS. |
| 1093 | 'src/third_party/minigbm/src': { |
Maksim Sisov | dc34577 | 2019-02-20 15:43:33 | [diff] [blame] | 1094 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '4fe3038be586d5db8e44e452f5ed6a93c8ccf50a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1095 | 'condition': 'checkout_linux', |
| 1096 | }, |
| 1097 | |
| 1098 | # Minizip library. Used on Chrome OS. |
| 1099 | 'src/third_party/minizip/src': { |
Anand K. Mistry | bdd979e4 | 2018-12-17 04:38:59 | [diff] [blame] | 1100 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1101 | 'condition': 'checkout_linux', |
| 1102 | }, |
| 1103 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1104 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 1105 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1106 | 'condition': 'checkout_android', |
| 1107 | }, |
| 1108 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1109 | # Binaries for nacl sdk. |
| 1110 | 'src/third_party/nacl_sdk_binaries': { |
| 1111 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1112 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1113 | }, |
| 1114 | |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1115 | 'src/third_party/nasm': { |
| 1116 | 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
Tom Anderson | 9f4bf88 | 2019-03-14 18:03:43 | [diff] [blame] | 1117 | '076332ea7c414313ab9d6d5b56396641051df5ea' |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1118 | }, |
| 1119 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1120 | 'src/third_party/netty-tcnative/src': { |
| 1121 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 1122 | 'condition': 'checkout_android', |
| 1123 | }, |
| 1124 | |
| 1125 | 'src/third_party/netty4/src': { |
| 1126 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 1127 | 'condition': 'checkout_android', |
| 1128 | }, |
| 1129 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1130 | 'src/third_party/objenesis': { |
| 1131 | 'packages': [ |
| 1132 | { |
| 1133 | 'package': 'chromium/third_party/objenesis', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1134 | 'version': '9e367f55e5a65781ee77bfcbaa88fb82b30e75c0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1135 | }, |
| 1136 | ], |
| 1137 | 'condition': 'checkout_android', |
| 1138 | 'dep_type': 'cipd', |
| 1139 | }, |
| 1140 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1141 | 'src/third_party/openh264/src': |
Tom Anderson | f688af0 | 2018-11-29 23:45:22 | [diff] [blame] | 1142 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '6f26bce0b1c4e8ce0e13332f7c0083788def5fdf', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1143 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1144 | 'src/third_party/openmax_dl': |
| 1145 | Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'), |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1146 | |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1147 | 'src/third_party/openscreen/src': |
| 1148 | Var('chromium_git') + '/openscreen' + '@' + 'b1d095ba4f8f3ec1efd90dbd5cb0a37e5b4b21f7', |
| 1149 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1150 | 'src/third_party/ow2_asm': { |
| 1151 | 'packages': [ |
| 1152 | { |
| 1153 | 'package': 'chromium/third_party/ow2_asm', |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1154 | 'version': 'NNAhdJzMdnutUVqfSJm5v0tVazA9l3Dd6CRwH6N4Q5kC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1155 | }, |
| 1156 | ], |
| 1157 | 'condition': 'checkout_android', |
| 1158 | 'dep_type': 'cipd', |
| 1159 | }, |
| 1160 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1161 | 'src/third_party/pdfium': |
| 1162 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 1163 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1164 | # Parses Windows PE/COFF executable format. |
| 1165 | 'src/third_party/pefile': { |
| 1166 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1167 | 'condition': 'checkout_win', |
| 1168 | }, |
| 1169 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1170 | 'src/third_party/perfetto': |
chromium-autoroll | 83cf758 | 2019-03-20 16:37:48 | [diff] [blame] | 1171 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '32dc81e1a3cc86a792c99aae85b8f029149d0dc8', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1172 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1173 | 'src/third_party/perl': { |
| 1174 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78', |
| 1175 | 'condition': 'checkout_win', |
| 1176 | }, |
| 1177 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1178 | 'src/third_party/proguard': { |
| 1179 | 'packages': [ |
| 1180 | { |
| 1181 | 'package': 'chromium/third_party/proguard', |
| 1182 | 'version': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca', |
| 1183 | }, |
| 1184 | ], |
| 1185 | 'condition': 'checkout_android', |
| 1186 | 'dep_type': 'cipd', |
| 1187 | }, |
| 1188 | |
Mohamed Heikal | 5c48859 | 2018-11-26 23:32:15 | [diff] [blame] | 1189 | 'src/third_party/protoc_javalite': { |
| 1190 | 'packages': [ |
| 1191 | { |
| 1192 | 'package': 'chromium/third_party/protoc_javalite', |
| 1193 | 'version': 'version:3.0.0-cr1', |
| 1194 | }, |
| 1195 | ], |
| 1196 | 'condition': 'checkout_android', |
| 1197 | 'dep_type': 'cipd', |
| 1198 | }, |
| 1199 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1200 | # Dependency of chromite.git and skia. |
| 1201 | 'src/third_party/pyelftools': { |
| 1202 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1203 | 'condition': 'checkout_linux', |
| 1204 | }, |
| 1205 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1206 | 'src/third_party/pyftpdlib/src': |
| 1207 | Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45', |
| 1208 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1209 | 'src/third_party/quic_trace/src': |
Ryan Hamilton | 840358c | 2019-03-19 19:00:35 | [diff] [blame] | 1210 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + '9aaca5b4862aaf871e677cbd188fee34f588360d', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1211 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1212 | 'src/third_party/pywebsocket/src': |
| 1213 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 1214 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1215 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1216 | 'packages': [ |
| 1217 | { |
| 1218 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1219 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1220 | }, |
| 1221 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1222 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1223 | 'dep_type': 'cipd', |
| 1224 | }, |
| 1225 | |
| 1226 | 'src/third_party/qemu-mac-x64': { |
| 1227 | 'packages': [ |
| 1228 | { |
| 1229 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1230 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1231 | }, |
| 1232 | ], |
| 1233 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1234 | 'dep_type': 'cipd', |
| 1235 | }, |
| 1236 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1237 | 'src/third_party/re2/src': |
Paul Wankadia | 3c0bb7f | 2019-03-14 17:03:00 | [diff] [blame] | 1238 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5a982a6dba7c4d98b443471823be0bd9d9677143', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1239 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1240 | 'src/third_party/r8': { |
| 1241 | 'packages': [ |
| 1242 | { |
| 1243 | 'package': 'chromium/third_party/r8', |
Sam Maier | 411d7731 | 2019-01-24 21:44:23 | [diff] [blame] | 1244 | 'version': 'SlcbUnEufAQ-iuOwGOl8yYQuctmpf7bMqh59kBfpil0C', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1245 | }, |
| 1246 | ], |
| 1247 | 'condition': 'checkout_android', |
| 1248 | 'dep_type': 'cipd', |
| 1249 | }, |
| 1250 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1251 | 'src/third_party/requests/src': { |
| 1252 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1253 | 'condition': 'checkout_android', |
| 1254 | }, |
| 1255 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1256 | 'src/third_party/robolectric': { |
| 1257 | 'packages': [ |
| 1258 | { |
| 1259 | 'package': 'chromium/third_party/robolectric', |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1260 | 'version': 'iRFT1e5YFmRn5cbV0cAkQ5vDUXFmQ4qPYqStmmDfiMMC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1261 | }, |
| 1262 | ], |
| 1263 | 'condition': 'checkout_android', |
| 1264 | 'dep_type': 'cipd', |
| 1265 | }, |
| 1266 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1267 | 'src/third_party/robolectric/robolectric': { |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1268 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '3d6dcabf5521e028c8efc2778ab6bd8c7b6d923c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1269 | 'condition': 'checkout_android', |
| 1270 | }, |
| 1271 | |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1272 | 'src/third_party/androidx': { |
| 1273 | 'packages': [ |
| 1274 | { |
| 1275 | 'package': 'chromium/third_party/androidx', |
| 1276 | 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| 1277 | }, |
| 1278 | ], |
| 1279 | 'condition': 'checkout_android', |
| 1280 | 'dep_type': 'cipd', |
| 1281 | }, |
| 1282 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1283 | 'src/third_party/sfntly/src': |
| 1284 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
| 1285 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1286 | 'src/third_party/skia': |
| 1287 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1288 | |
| 1289 | 'src/third_party/smhasher/src': |
| 1290 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1291 | |
| 1292 | 'src/third_party/snappy/src': |
Victor Costan | 2e0948d | 2019-01-09 19:21:24 | [diff] [blame] | 1293 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + '3f194acb57e0487531c96b97af61dcbd025a78a3', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1294 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1295 | 'src/third_party/sqlite4java': { |
| 1296 | 'packages': [ |
| 1297 | { |
| 1298 | 'package': 'chromium/third_party/sqlite4java', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1299 | 'version': '889660698187baa7c8b0d79f7bf58563125fbd66', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1300 | }, |
| 1301 | ], |
| 1302 | 'condition': 'checkout_android', |
| 1303 | 'dep_type': 'cipd', |
| 1304 | }, |
| 1305 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1306 | 'src/third_party/swiftshader': |
| 1307 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1308 | |
| 1309 | 'src/third_party/ub-uiautomator/lib': { |
| 1310 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1311 | 'condition': 'checkout_android', |
| 1312 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1313 | |
| 1314 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 462adb2 | 2018-06-25 18:56:57 | [diff] [blame] | 1315 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7a8bc9a90ca96634aa56ee712856d97f27d903f8', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1316 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1317 | # Display server protocol for Linux. |
| 1318 | 'src/third_party/wayland/src': { |
| 1319 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 1320 | 'condition': 'checkout_linux', |
| 1321 | }, |
| 1322 | |
| 1323 | # Wayland protocols that add functionality not available in the core protocol. |
| 1324 | 'src/third_party/wayland-protocols/src': { |
Alexandros Frantzis | e05fa0a | 2019-01-15 05:17:12 | [diff] [blame] | 1325 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '57423eac60cc234ebfad15f394488a47f69afe16', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1326 | 'condition': 'checkout_linux', |
| 1327 | }, |
| 1328 | |
| 1329 | # Wireless Display Software. Used on Chrome OS. |
| 1330 | 'src/third_party/wds/src': { |
| 1331 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1332 | 'condition': 'checkout_linux', |
| 1333 | }, |
| 1334 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1335 | 'src/third_party/webdriver/pylib': |
| 1336 | Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd', |
| 1337 | |
| 1338 | 'src/third_party/webgl/src': |
shrekshao | 4f572400 | 2019-02-12 19:49:37 | [diff] [blame] | 1339 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'a0f51b2e123f39c9ff12e621b0b47dd28dd64424', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1340 | |
| 1341 | 'src/third_party/webrtc': |
chromium-autoroll | cdee30c | 2019-03-21 00:35:19 | [diff] [blame] | 1342 | Var('webrtc_git') + '/src.git' + '@' + 'f7f9845d9e5b24c73a70fceb278a20b43e9d9919', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1343 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1344 | 'src/third_party/xdg-utils': { |
| 1345 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1346 | 'condition': 'checkout_linux', |
| 1347 | }, |
| 1348 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1349 | 'src/third_party/xstream': { |
| 1350 | 'packages': [ |
| 1351 | { |
| 1352 | 'package': 'chromium/third_party/xstream', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1353 | 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1354 | }, |
| 1355 | ], |
| 1356 | 'condition': 'checkout_android', |
| 1357 | 'dep_type': 'cipd', |
| 1358 | }, |
| 1359 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1360 | 'src/third_party/yasm/source/patched-yasm': |
Mostyn Bramley-Moore | 2be9a9d0 | 2018-07-07 00:35:17 | [diff] [blame] | 1361 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1362 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1363 | 'src/tools/page_cycler/acid3': |
| 1364 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1365 | |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1366 | 'src/tools/skia_goldctl': { |
| 1367 | 'packages': [ |
| 1368 | { |
| 1369 | 'package': 'skia/tools/goldctl/${{platform}}', |
Brian Sheedy | 3d74812 | 2019-03-20 00:27:37 | [diff] [blame] | 1370 | 'version': 'git_revision:1c5d71e846840d56aa37758548789d987a0515bc', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1371 | }, |
| 1372 | ], |
| 1373 | 'dep_type': 'cipd', |
| 1374 | }, |
| 1375 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1376 | 'src/tools/swarming_client': |
| 1377 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1378 | |
| 1379 | 'src/v8': |
| 1380 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1381 | |
| 1382 | 'src-internal': { |
chromium-internal-autoroll | 88eef080 | 2019-03-20 23:17:45 | [diff] [blame] | 1383 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@48c69a292049d58cab5512242efde1a8f149365c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1384 | 'condition': 'checkout_src_internal', |
| 1385 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1386 | |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1387 | 'src/third_party/google_android_play_core': { |
| 1388 | 'packages': [ |
| 1389 | { |
| 1390 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
Tibor Goldschwendt | 4d4a30d | 2019-01-23 16:24:31 | [diff] [blame] | 1391 | 'version': '8G9OLUMhXcZ3EtWR234C86_a9afooucYik62UE_FjrsC', |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1392 | }, |
| 1393 | ], |
| 1394 | 'condition': 'checkout_android', |
| 1395 | 'dep_type': 'cipd', |
| 1396 | }, |
| 1397 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1398 | # === ANDROID_DEPS Generated Code Start === |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1399 | # Generated by //tools/android/roll/android_deps/fetch_all.py |
| 1400 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1401 | 'packages': [ |
| 1402 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1403 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
| 1404 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1405 | }, |
| 1406 | ], |
| 1407 | 'condition': 'checkout_android', |
| 1408 | 'dep_type': 'cipd', |
| 1409 | }, |
| 1410 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1411 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1412 | 'packages': [ |
| 1413 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1414 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
| 1415 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1416 | }, |
| 1417 | ], |
| 1418 | 'condition': 'checkout_android', |
| 1419 | 'dep_type': 'cipd', |
| 1420 | }, |
| 1421 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1422 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1423 | 'packages': [ |
| 1424 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1425 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
| 1426 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1427 | }, |
| 1428 | ], |
| 1429 | 'condition': 'checkout_android', |
| 1430 | 'dep_type': 'cipd', |
| 1431 | }, |
| 1432 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1433 | 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 1434 | 'packages': [ |
| 1435 | { |
| 1436 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
| 1437 | 'version': 'version:1.0.0-cr0', |
| 1438 | }, |
| 1439 | ], |
| 1440 | 'condition': 'checkout_android', |
| 1441 | 'dep_type': 'cipd', |
| 1442 | }, |
| 1443 | |
| 1444 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 1445 | 'packages': [ |
| 1446 | { |
| 1447 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
| 1448 | 'version': 'version:2.0.0-cr0', |
| 1449 | }, |
| 1450 | ], |
| 1451 | 'condition': 'checkout_android', |
| 1452 | 'dep_type': 'cipd', |
| 1453 | }, |
| 1454 | |
| 1455 | 'src/third_party/android_deps/libs/androidx_test_core': { |
| 1456 | 'packages': [ |
| 1457 | { |
| 1458 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
| 1459 | 'version': 'version:1.0.0-cr0', |
| 1460 | }, |
| 1461 | ], |
| 1462 | 'condition': 'checkout_android', |
| 1463 | 'dep_type': 'cipd', |
| 1464 | }, |
| 1465 | |
| 1466 | 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 1467 | 'packages': [ |
| 1468 | { |
| 1469 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
| 1470 | 'version': 'version:1.0.0-cr0', |
| 1471 | }, |
| 1472 | ], |
| 1473 | 'condition': 'checkout_android', |
| 1474 | 'dep_type': 'cipd', |
| 1475 | }, |
| 1476 | |
| 1477 | 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 1478 | 'packages': [ |
| 1479 | { |
| 1480 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
| 1481 | 'version': 'version:1.1.0-cr0', |
| 1482 | }, |
| 1483 | ], |
| 1484 | 'condition': 'checkout_android', |
| 1485 | 'dep_type': 'cipd', |
| 1486 | }, |
| 1487 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 1488 | 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 1489 | 'packages': [ |
| 1490 | { |
| 1491 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
| 1492 | 'version': 'version:1.1.0-cr0', |
| 1493 | }, |
| 1494 | ], |
| 1495 | 'condition': 'checkout_android', |
| 1496 | 'dep_type': 'cipd', |
| 1497 | }, |
| 1498 | |
| 1499 | 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 1500 | 'packages': [ |
| 1501 | { |
| 1502 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
| 1503 | 'version': 'version:1.1.0-cr0', |
| 1504 | }, |
| 1505 | ], |
| 1506 | 'condition': 'checkout_android', |
| 1507 | 'dep_type': 'cipd', |
| 1508 | }, |
| 1509 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1510 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1511 | 'packages': [ |
| 1512 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1513 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
| 1514 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1515 | }, |
| 1516 | ], |
| 1517 | 'condition': 'checkout_android', |
| 1518 | 'dep_type': 'cipd', |
| 1519 | }, |
| 1520 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1521 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1522 | 'packages': [ |
| 1523 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1524 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
| 1525 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1526 | }, |
| 1527 | ], |
| 1528 | 'condition': 'checkout_android', |
| 1529 | 'dep_type': 'cipd', |
| 1530 | }, |
| 1531 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1532 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1533 | 'packages': [ |
| 1534 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1535 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
| 1536 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1537 | }, |
| 1538 | ], |
| 1539 | 'condition': 'checkout_android', |
| 1540 | 'dep_type': 'cipd', |
| 1541 | }, |
| 1542 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1543 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1544 | 'packages': [ |
| 1545 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1546 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
| 1547 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1548 | }, |
| 1549 | ], |
| 1550 | 'condition': 'checkout_android', |
| 1551 | 'dep_type': 'cipd', |
| 1552 | }, |
| 1553 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1554 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1555 | 'packages': [ |
| 1556 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1557 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
| 1558 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1559 | }, |
| 1560 | ], |
| 1561 | 'condition': 'checkout_android', |
| 1562 | 'dep_type': 'cipd', |
| 1563 | }, |
| 1564 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1565 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1566 | 'packages': [ |
| 1567 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1568 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
| 1569 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1570 | }, |
| 1571 | ], |
| 1572 | 'condition': 'checkout_android', |
| 1573 | 'dep_type': 'cipd', |
| 1574 | }, |
| 1575 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1576 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1577 | 'packages': [ |
| 1578 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1579 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
| 1580 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1581 | }, |
| 1582 | ], |
| 1583 | 'condition': 'checkout_android', |
| 1584 | 'dep_type': 'cipd', |
| 1585 | }, |
| 1586 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1587 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1588 | 'packages': [ |
| 1589 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1590 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 1591 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1592 | }, |
| 1593 | ], |
| 1594 | 'condition': 'checkout_android', |
| 1595 | 'dep_type': 'cipd', |
| 1596 | }, |
| 1597 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1598 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1599 | 'packages': [ |
| 1600 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1601 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
| 1602 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1603 | }, |
| 1604 | ], |
| 1605 | 'condition': 'checkout_android', |
| 1606 | 'dep_type': 'cipd', |
| 1607 | }, |
| 1608 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1609 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1610 | 'packages': [ |
| 1611 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1612 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
| 1613 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1614 | }, |
| 1615 | ], |
| 1616 | 'condition': 'checkout_android', |
| 1617 | 'dep_type': 'cipd', |
| 1618 | }, |
| 1619 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1620 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1621 | 'packages': [ |
| 1622 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1623 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
| 1624 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1625 | }, |
| 1626 | ], |
| 1627 | 'condition': 'checkout_android', |
| 1628 | 'dep_type': 'cipd', |
| 1629 | }, |
| 1630 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1631 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1632 | 'packages': [ |
| 1633 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1634 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
| 1635 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1636 | }, |
| 1637 | ], |
| 1638 | 'condition': 'checkout_android', |
| 1639 | 'dep_type': 'cipd', |
| 1640 | }, |
| 1641 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1642 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1643 | 'packages': [ |
| 1644 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1645 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
| 1646 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1647 | }, |
| 1648 | ], |
| 1649 | 'condition': 'checkout_android', |
| 1650 | 'dep_type': 'cipd', |
| 1651 | }, |
| 1652 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1653 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1654 | 'packages': [ |
| 1655 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1656 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
| 1657 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1658 | }, |
| 1659 | ], |
| 1660 | 'condition': 'checkout_android', |
| 1661 | 'dep_type': 'cipd', |
| 1662 | }, |
| 1663 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1664 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1665 | 'packages': [ |
| 1666 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1667 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
| 1668 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1669 | }, |
| 1670 | ], |
| 1671 | 'condition': 'checkout_android', |
| 1672 | 'dep_type': 'cipd', |
| 1673 | }, |
| 1674 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1675 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1676 | 'packages': [ |
| 1677 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1678 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
| 1679 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1680 | }, |
| 1681 | ], |
| 1682 | 'condition': 'checkout_android', |
| 1683 | 'dep_type': 'cipd', |
| 1684 | }, |
| 1685 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1686 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1687 | 'packages': [ |
| 1688 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1689 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
| 1690 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1691 | }, |
| 1692 | ], |
| 1693 | 'condition': 'checkout_android', |
| 1694 | 'dep_type': 'cipd', |
| 1695 | }, |
| 1696 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1697 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1698 | 'packages': [ |
| 1699 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1700 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
| 1701 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1702 | }, |
| 1703 | ], |
| 1704 | 'condition': 'checkout_android', |
| 1705 | 'dep_type': 'cipd', |
| 1706 | }, |
| 1707 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1708 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1709 | 'packages': [ |
| 1710 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1711 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
| 1712 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1713 | }, |
| 1714 | ], |
| 1715 | 'condition': 'checkout_android', |
| 1716 | 'dep_type': 'cipd', |
| 1717 | }, |
| 1718 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1719 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1720 | 'packages': [ |
| 1721 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1722 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
| 1723 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1724 | }, |
| 1725 | ], |
| 1726 | 'condition': 'checkout_android', |
| 1727 | 'dep_type': 'cipd', |
| 1728 | }, |
| 1729 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1730 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1731 | 'packages': [ |
| 1732 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1733 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
| 1734 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1735 | }, |
| 1736 | ], |
| 1737 | 'condition': 'checkout_android', |
| 1738 | 'dep_type': 'cipd', |
| 1739 | }, |
| 1740 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1741 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1742 | 'packages': [ |
| 1743 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1744 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
| 1745 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1746 | }, |
| 1747 | ], |
| 1748 | 'condition': 'checkout_android', |
| 1749 | 'dep_type': 'cipd', |
| 1750 | }, |
| 1751 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1752 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1753 | 'packages': [ |
| 1754 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1755 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
| 1756 | 'version': 'version:27.0.0-cr0', |
| 1757 | }, |
| 1758 | ], |
| 1759 | 'condition': 'checkout_android', |
| 1760 | 'dep_type': 'cipd', |
| 1761 | }, |
| 1762 | |
| 1763 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 1764 | 'packages': [ |
| 1765 | { |
| 1766 | '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] | 1767 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1768 | }, |
| 1769 | ], |
| 1770 | 'condition': 'checkout_android', |
| 1771 | 'dep_type': 'cipd', |
| 1772 | }, |
| 1773 | |
| 1774 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 1775 | 'packages': [ |
| 1776 | { |
| 1777 | '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] | 1778 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1779 | }, |
| 1780 | ], |
| 1781 | 'condition': 'checkout_android', |
| 1782 | 'dep_type': 'cipd', |
| 1783 | }, |
| 1784 | |
| 1785 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 1786 | 'packages': [ |
| 1787 | { |
| 1788 | '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] | 1789 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1790 | }, |
| 1791 | ], |
| 1792 | 'condition': 'checkout_android', |
| 1793 | 'dep_type': 'cipd', |
| 1794 | }, |
| 1795 | |
| 1796 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 1797 | 'packages': [ |
| 1798 | { |
| 1799 | '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] | 1800 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1801 | }, |
| 1802 | ], |
| 1803 | 'condition': 'checkout_android', |
| 1804 | 'dep_type': 'cipd', |
| 1805 | }, |
| 1806 | |
| 1807 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 1808 | 'packages': [ |
| 1809 | { |
| 1810 | '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] | 1811 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1812 | }, |
| 1813 | ], |
| 1814 | 'condition': 'checkout_android', |
| 1815 | 'dep_type': 'cipd', |
| 1816 | }, |
| 1817 | |
| 1818 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 1819 | 'packages': [ |
| 1820 | { |
| 1821 | '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] | 1822 | 'version': 'version:16.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1823 | }, |
| 1824 | ], |
| 1825 | 'condition': 'checkout_android', |
| 1826 | 'dep_type': 'cipd', |
| 1827 | }, |
| 1828 | |
| 1829 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 1830 | 'packages': [ |
| 1831 | { |
| 1832 | '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] | 1833 | 'version': 'version:16.0.1-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1834 | }, |
| 1835 | ], |
| 1836 | 'condition': 'checkout_android', |
| 1837 | 'dep_type': 'cipd', |
| 1838 | }, |
| 1839 | |
| 1840 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 1841 | 'packages': [ |
| 1842 | { |
| 1843 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
| 1844 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1845 | }, |
| 1846 | ], |
| 1847 | 'condition': 'checkout_android', |
| 1848 | 'dep_type': 'cipd', |
| 1849 | }, |
| 1850 | |
| 1851 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 1852 | 'packages': [ |
| 1853 | { |
| 1854 | '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] | 1855 | 'version': 'version:15.0.1-cr0', |
| 1856 | }, |
| 1857 | ], |
| 1858 | 'condition': 'checkout_android', |
| 1859 | 'dep_type': 'cipd', |
| 1860 | }, |
| 1861 | |
| 1862 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 1863 | 'packages': [ |
| 1864 | { |
| 1865 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
| 1866 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1867 | }, |
| 1868 | ], |
| 1869 | 'condition': 'checkout_android', |
| 1870 | 'dep_type': 'cipd', |
| 1871 | }, |
| 1872 | |
| 1873 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 1874 | 'packages': [ |
| 1875 | { |
| 1876 | '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] | 1877 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1878 | }, |
| 1879 | ], |
| 1880 | 'condition': 'checkout_android', |
| 1881 | 'dep_type': 'cipd', |
| 1882 | }, |
| 1883 | |
| 1884 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 1885 | 'packages': [ |
| 1886 | { |
| 1887 | '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] | 1888 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1889 | }, |
| 1890 | ], |
| 1891 | 'condition': 'checkout_android', |
| 1892 | 'dep_type': 'cipd', |
| 1893 | }, |
| 1894 | |
| 1895 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 1896 | 'packages': [ |
| 1897 | { |
| 1898 | '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] | 1899 | 'version': 'version:16.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1900 | }, |
| 1901 | ], |
| 1902 | 'condition': 'checkout_android', |
| 1903 | 'dep_type': 'cipd', |
| 1904 | }, |
| 1905 | |
| 1906 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 1907 | 'packages': [ |
| 1908 | { |
| 1909 | '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] | 1910 | 'version': 'version:15.0.1-cr0', |
| 1911 | }, |
| 1912 | ], |
| 1913 | 'condition': 'checkout_android', |
| 1914 | 'dep_type': 'cipd', |
| 1915 | }, |
| 1916 | |
| 1917 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 1918 | 'packages': [ |
| 1919 | { |
| 1920 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
| 1921 | 'version': 'version:15.0.1-cr0', |
| 1922 | }, |
| 1923 | ], |
| 1924 | 'condition': 'checkout_android', |
| 1925 | 'dep_type': 'cipd', |
| 1926 | }, |
| 1927 | |
| 1928 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 1929 | 'packages': [ |
| 1930 | { |
| 1931 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
| 1932 | 'version': 'version:15.0.1-cr0', |
| 1933 | }, |
| 1934 | ], |
| 1935 | 'condition': 'checkout_android', |
| 1936 | 'dep_type': 'cipd', |
| 1937 | }, |
| 1938 | |
| 1939 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 1940 | 'packages': [ |
| 1941 | { |
| 1942 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
| 1943 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1944 | }, |
| 1945 | ], |
| 1946 | 'condition': 'checkout_android', |
| 1947 | 'dep_type': 'cipd', |
| 1948 | }, |
| 1949 | |
| 1950 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 1951 | 'packages': [ |
| 1952 | { |
| 1953 | '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] | 1954 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1955 | }, |
| 1956 | ], |
| 1957 | 'condition': 'checkout_android', |
| 1958 | 'dep_type': 'cipd', |
| 1959 | }, |
| 1960 | |
| 1961 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 1962 | 'packages': [ |
| 1963 | { |
| 1964 | '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] | 1965 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1966 | }, |
| 1967 | ], |
| 1968 | 'condition': 'checkout_android', |
| 1969 | 'dep_type': 'cipd', |
| 1970 | }, |
| 1971 | |
| 1972 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 1973 | 'packages': [ |
| 1974 | { |
| 1975 | '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] | 1976 | 'version': 'version:15.0.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1977 | }, |
| 1978 | ], |
| 1979 | 'condition': 'checkout_android', |
| 1980 | 'dep_type': 'cipd', |
| 1981 | }, |
| 1982 | |
Piotr Bialecki | b1afbb9 | 2018-12-10 22:43:55 | [diff] [blame] | 1983 | 'src/third_party/android_deps/libs/com_google_ar_core': { |
| 1984 | 'packages': [ |
| 1985 | { |
| 1986 | 'package': 'chromium/third_party/android_deps/libs/com_google_ar_core', |
Piotr Bialecki | 342d5ef | 2019-01-16 21:44:17 | [diff] [blame] | 1987 | 'version': 'version:1.6.0-cr0', |
Piotr Bialecki | b1afbb9 | 2018-12-10 22:43:55 | [diff] [blame] | 1988 | }, |
| 1989 | ], |
| 1990 | 'condition': 'checkout_android', |
| 1991 | 'dep_type': 'cipd', |
| 1992 | }, |
| 1993 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 1994 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 1995 | 'packages': [ |
| 1996 | { |
| 1997 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 1998 | 'version': 'version:1.3.9-cr0', |
| 1999 | }, |
| 2000 | ], |
| 2001 | 'condition': 'checkout_android', |
| 2002 | 'dep_type': 'cipd', |
| 2003 | }, |
| 2004 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2005 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 2006 | 'packages': [ |
| 2007 | { |
| 2008 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 2009 | 'version': 'version:2.17-cr0', |
| 2010 | }, |
| 2011 | ], |
| 2012 | 'condition': 'checkout_android', |
| 2013 | 'dep_type': 'cipd', |
| 2014 | }, |
| 2015 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2016 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 2017 | 'packages': [ |
| 2018 | { |
| 2019 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 2020 | 'version': 'version:2.17-cr0', |
| 2021 | }, |
| 2022 | ], |
| 2023 | 'condition': 'checkout_android', |
| 2024 | 'dep_type': 'cipd', |
| 2025 | }, |
| 2026 | |
| 2027 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 2028 | 'packages': [ |
| 2029 | { |
| 2030 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 2031 | 'version': 'version:2.17-cr0', |
| 2032 | }, |
| 2033 | ], |
| 2034 | 'condition': 'checkout_android', |
| 2035 | 'dep_type': 'cipd', |
| 2036 | }, |
| 2037 | |
| 2038 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2039 | 'packages': [ |
| 2040 | { |
| 2041 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 2042 | 'version': 'version:2.17-cr0', |
| 2043 | }, |
| 2044 | ], |
| 2045 | 'condition': 'checkout_android', |
| 2046 | 'dep_type': 'cipd', |
| 2047 | }, |
| 2048 | |
| 2049 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 2050 | 'packages': [ |
| 2051 | { |
| 2052 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
| 2053 | 'version': 'version:2.1.3-cr0', |
| 2054 | }, |
| 2055 | ], |
| 2056 | 'condition': 'checkout_android', |
| 2057 | 'dep_type': 'cipd', |
| 2058 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2059 | |
| 2060 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 2061 | 'packages': [ |
| 2062 | { |
| 2063 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 2064 | 'version': 'version:9-dev-r4023-3-cr0', |
| 2065 | }, |
| 2066 | ], |
| 2067 | 'condition': 'checkout_android', |
| 2068 | 'dep_type': 'cipd', |
| 2069 | }, |
| 2070 | |
| 2071 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 2072 | 'packages': [ |
| 2073 | { |
| 2074 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 2075 | 'version': 'version:1.5-cr0', |
| 2076 | }, |
| 2077 | ], |
| 2078 | 'condition': 'checkout_android', |
| 2079 | 'dep_type': 'cipd', |
| 2080 | }, |
| 2081 | |
| 2082 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 2083 | 'packages': [ |
| 2084 | { |
| 2085 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2086 | 'version': 'version:25.0-jre-cr0', |
| 2087 | }, |
| 2088 | ], |
| 2089 | 'condition': 'checkout_android', |
| 2090 | 'dep_type': 'cipd', |
| 2091 | }, |
| 2092 | |
| 2093 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 2094 | 'packages': [ |
| 2095 | { |
| 2096 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 2097 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2098 | }, |
| 2099 | ], |
| 2100 | 'condition': 'checkout_android', |
| 2101 | 'dep_type': 'cipd', |
| 2102 | }, |
| 2103 | |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 2104 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_lite': { |
| 2105 | 'packages': [ |
| 2106 | { |
| 2107 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_lite', |
| 2108 | 'version': 'version:3.0.1-cr0', |
| 2109 | }, |
| 2110 | ], |
| 2111 | 'condition': 'checkout_android', |
| 2112 | 'dep_type': 'cipd', |
| 2113 | }, |
| 2114 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2115 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 2116 | 'packages': [ |
| 2117 | { |
| 2118 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
| 2119 | 'version': 'version:1.11.0-cr0', |
| 2120 | }, |
| 2121 | ], |
| 2122 | 'condition': 'checkout_android', |
| 2123 | 'dep_type': 'cipd', |
| 2124 | }, |
| 2125 | |
| 2126 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 2127 | 'packages': [ |
| 2128 | { |
| 2129 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 2130 | 'version': 'version:1.0-cr0', |
| 2131 | }, |
| 2132 | ], |
| 2133 | 'condition': 'checkout_android', |
| 2134 | 'dep_type': 'cipd', |
| 2135 | }, |
| 2136 | |
| 2137 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2138 | 'packages': [ |
| 2139 | { |
| 2140 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 2141 | 'version': 'version:1-cr0', |
| 2142 | }, |
| 2143 | ], |
| 2144 | 'condition': 'checkout_android', |
| 2145 | 'dep_type': 'cipd', |
| 2146 | }, |
| 2147 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2148 | 'src/third_party/android_deps/libs/net_sf_kxml_kxml2': { |
| 2149 | 'packages': [ |
| 2150 | { |
| 2151 | 'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2', |
| 2152 | 'version': 'version:2.3.0-cr0', |
| 2153 | }, |
| 2154 | ], |
| 2155 | 'condition': 'checkout_android', |
| 2156 | 'dep_type': 'cipd', |
| 2157 | }, |
| 2158 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2159 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 2160 | 'packages': [ |
| 2161 | { |
| 2162 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
| 2163 | 'version': 'version:2.3.0-cr0', |
| 2164 | }, |
| 2165 | ], |
| 2166 | 'condition': 'checkout_android', |
| 2167 | 'dep_type': 'cipd', |
| 2168 | }, |
| 2169 | |
| 2170 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 2171 | 'packages': [ |
| 2172 | { |
| 2173 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
| 2174 | 'version': 'version:1.14-cr0', |
| 2175 | }, |
| 2176 | ], |
| 2177 | 'condition': 'checkout_android', |
| 2178 | 'dep_type': 'cipd', |
| 2179 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2180 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 2181 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2182 | } |
| 2183 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 2184 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2185 | include_rules = [ |
| 2186 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2187 | # 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] | 2188 | '+base', |
| 2189 | '+build', |
| 2190 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2191 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2192 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2193 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2194 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2195 | '+testing', |
| 2196 | '+third_party/icu/source/common/unicode', |
| 2197 | '+third_party/icu/source/i18n/unicode', |
| 2198 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2199 | |
| 2200 | # Chromium cannot directly depend on Abseil. |
| 2201 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2202 | ] |
| 2203 | |
| 2204 | |
| 2205 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 2206 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2207 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2208 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2209 | 'skia', |
| 2210 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2211 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2212 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2213 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 2214 | |
| 2215 | |
| 2216 | hooks = [ |
| 2217 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2218 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 2219 | # first hook so that other things that get/generate into the output |
| 2220 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2221 | 'name': 'landmines', |
| 2222 | 'pattern': '.', |
| 2223 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2224 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2225 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2226 | ], |
| 2227 | }, |
| 2228 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2229 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 2230 | # disabled. |
| 2231 | 'name': 'disable_depot_tools_selfupdate', |
| 2232 | 'pattern': '.', |
| 2233 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2234 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2235 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 2236 | '--disable', |
| 2237 | ], |
| 2238 | }, |
| 2239 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 2240 | # Ensure that we don't accidentally reference any .pyc files whose |
| 2241 | # corresponding .py files have since been deleted. |
| 2242 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2243 | 'name': 'remove_stale_pyc_files', |
| 2244 | 'pattern': '.', |
| 2245 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2246 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2247 | 'src/tools/remove_stale_pyc_files.py', |
| 2248 | 'src/android_webview/tools', |
| 2249 | 'src/build/android', |
| 2250 | 'src/gpu/gles2_conform_support', |
| 2251 | 'src/infra', |
| 2252 | 'src/ppapi', |
| 2253 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 2254 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 2255 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2256 | 'src/third_party/catapult', |
| 2257 | 'src/third_party/closure_compiler/build', |
| 2258 | 'src/tools', |
| 2259 | ], |
| 2260 | }, |
| 2261 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2262 | # This downloads binaries for Native Client's newlib toolchain. |
| 2263 | # Done in lieu of building the toolchain from scratch as it can take |
| 2264 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2265 | 'name': 'nacltools', |
| 2266 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 2267 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2268 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2269 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 2270 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 2271 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 2272 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2273 | ], |
| 2274 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 2275 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2276 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2277 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2278 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2279 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2280 | '--arch=arm'], |
| 2281 | }, |
| 2282 | { |
| 2283 | 'name': 'sysroot_arm64', |
| 2284 | 'pattern': '.', |
| 2285 | 'condition': 'checkout_linux and checkout_arm64', |
| 2286 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2287 | '--arch=arm64'], |
| 2288 | }, |
| 2289 | { |
| 2290 | 'name': 'sysroot_x86', |
| 2291 | 'pattern': '.', |
| 2292 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 2293 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2294 | '--arch=x86'], |
| 2295 | }, |
| 2296 | { |
| 2297 | 'name': 'sysroot_mips', |
| 2298 | 'pattern': '.', |
| 2299 | 'condition': 'checkout_linux and checkout_mips', |
| 2300 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2301 | '--arch=mips'], |
| 2302 | }, |
| 2303 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2304 | 'name': 'sysroot_mips64', |
| 2305 | 'pattern': '.', |
| 2306 | 'condition': 'checkout_linux and checkout_mips64', |
| 2307 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2308 | '--arch=mips64el'], |
| 2309 | }, |
| 2310 | |
| 2311 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2312 | 'name': 'sysroot_x64', |
| 2313 | 'pattern': '.', |
| 2314 | 'condition': 'checkout_linux and checkout_x64', |
| 2315 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2316 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 2317 | }, |
| 2318 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2319 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 2320 | 'name': 'ciopfs_linux', |
| 2321 | 'pattern': '.', |
| 2322 | 'condition': 'checkout_win and host_os == "linux"', |
| 2323 | 'action': [ 'python', |
| 2324 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2325 | '--no_resume', |
| 2326 | '--no_auth', |
| 2327 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 2328 | '-s', 'src/build/ciopfs.sha1', |
| 2329 | ] |
| 2330 | }, |
| 2331 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 2332 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2333 | 'name': 'win_toolchain', |
| 2334 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 2335 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2336 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2337 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2338 | { |
| 2339 | # Update the Mac toolchain if necessary. |
| 2340 | 'name': 'mac_toolchain', |
| 2341 | 'pattern': '.', |
Rohit Rao | 92489af | 2017-10-12 21:45:48 | [diff] [blame] | 2342 | 'condition': 'checkout_ios or checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 2343 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2344 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2345 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 2346 | # debugging when used with clang on Ubuntu Precise. |
| 2347 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 2348 | { |
| 2349 | 'name': 'binutils', |
| 2350 | 'pattern': 'src/third_party/binutils', |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2351 | 'condition': 'host_os == "linux" and host_cpu != "mips64"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2352 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 2353 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2354 | 'src/third_party/binutils/download.py', |
| 2355 | ], |
| 2356 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2357 | { |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2358 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2359 | 'name': 'clang', |
| 2360 | 'pattern': '.', |
Stephen Martinis | b98e2bc | 2018-10-31 21:58:40 | [diff] [blame] | 2361 | 'action': ['python', 'src/tools/clang/scripts/update.py', '--with-android={checkout_android}'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2362 | }, |
| 2363 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 2364 | # This is supposed to support the same set of platforms as 'clang' above. |
| 2365 | 'name': 'clang_coverage', |
| 2366 | 'pattern': '.', |
| 2367 | 'condition': 'checkout_clang_coverage_tools', |
| 2368 | 'action': ['python', 'src/tools/code_coverage/update_clang_coverage_tools.py'], |
| 2369 | }, |
| 2370 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2371 | # 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] | 2372 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 2373 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2374 | 'name': 'lld/mac', |
| 2375 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 2376 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2377 | 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2378 | }, |
| 2379 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 2380 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2381 | 'name': 'lastchange', |
| 2382 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2383 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2384 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 2385 | }, |
| 2386 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2387 | # Update GPU lists version string (for gpu/config). |
| 2388 | 'name': 'gpu_lists_version', |
| 2389 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2390 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2391 | '-m', 'GPU_LISTS_VERSION', |
| 2392 | '--revision-id-only', |
| 2393 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 2394 | }, |
| 2395 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2396 | # Update skia_commit_hash.h. |
| 2397 | 'name': 'lastchange_skia', |
| 2398 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2399 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2400 | '-m', 'SKIA_COMMIT_HASH', |
| 2401 | '-s', 'src/third_party/skia', |
| 2402 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 2403 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2404 | # Pull clang-format binaries using checked-in hashes. |
| 2405 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2406 | 'name': 'clang_format_win', |
| 2407 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2408 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2409 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2410 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2411 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2412 | '--no_auth', |
| 2413 | '--bucket', 'chromium-clang-format', |
| 2414 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2415 | ], |
| 2416 | }, |
| 2417 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2418 | 'name': 'clang_format_mac', |
| 2419 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2420 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2421 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2422 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2423 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2424 | '--no_auth', |
| 2425 | '--bucket', 'chromium-clang-format', |
| 2426 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2427 | ], |
| 2428 | }, |
| 2429 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2430 | 'name': 'clang_format_linux', |
| 2431 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2432 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2433 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2434 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2435 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2436 | '--no_auth', |
| 2437 | '--bucket', 'chromium-clang-format', |
| 2438 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 2439 | ], |
| 2440 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2441 | # Pull rc binaries using checked-in hashes. |
| 2442 | { |
| 2443 | 'name': 'rc_win', |
| 2444 | 'pattern': '.', |
| 2445 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2446 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2447 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2448 | '--no_resume', |
| 2449 | '--no_auth', |
| 2450 | '--bucket', 'chromium-browser-clang/rc', |
| 2451 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 2452 | ], |
| 2453 | }, |
| 2454 | { |
| 2455 | 'name': 'rc_mac', |
| 2456 | 'pattern': '.', |
| 2457 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2458 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2459 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2460 | '--no_resume', |
| 2461 | '--no_auth', |
| 2462 | '--bucket', 'chromium-browser-clang/rc', |
| 2463 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 2464 | ], |
| 2465 | }, |
| 2466 | { |
| 2467 | 'name': 'rc_linux', |
| 2468 | 'pattern': '.', |
| 2469 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2470 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2471 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2472 | '--no_resume', |
| 2473 | '--no_auth', |
| 2474 | '--bucket', 'chromium-browser-clang/rc', |
| 2475 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2476 | ] |
| 2477 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2478 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2479 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2480 | 'pattern': '.', |
| 2481 | 'action': [ 'download_from_google_storage', |
| 2482 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2483 | '--extract', |
| 2484 | '--no_auth', |
| 2485 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2486 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2487 | ], |
| 2488 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2489 | # Pull order files for the win/clang build. |
| 2490 | { |
| 2491 | 'name': 'orderfiles_win', |
| 2492 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 2493 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2494 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2495 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2496 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2497 | '--no_auth', |
| 2498 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 2499 | '-d', 'src/chrome/build', |
| 2500 | ], |
| 2501 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 2502 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2503 | 'name': 'apache_win32', |
| 2504 | 'pattern': '\\.sha1', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2505 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2506 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2507 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2508 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2509 | '--directory', |
| 2510 | '--recursive', |
| 2511 | '--no_auth', |
| 2512 | '--num_threads=16', |
| 2513 | '--bucket', 'chromium-apache-win32', |
| 2514 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 2515 | ], |
| 2516 | }, |
| 2517 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2518 | 'name': 'msan_chained_origins', |
| 2519 | 'pattern': '.', |
| 2520 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2521 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2522 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2523 | '--no_resume', |
| 2524 | '--no_auth', |
| 2525 | '--bucket', 'chromium-instrumented-libraries', |
| 2526 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2527 | ], |
| 2528 | }, |
| 2529 | { |
| 2530 | 'name': 'msan_no_origins', |
| 2531 | 'pattern': '.', |
| 2532 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2533 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2534 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2535 | '--no_resume', |
| 2536 | '--no_auth', |
| 2537 | '--bucket', 'chromium-instrumented-libraries', |
| 2538 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2539 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 2540 | }, |
| 2541 | { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2542 | 'name': 'wasm_fuzzer', |
| 2543 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2544 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2545 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2546 | '--no_resume', |
| 2547 | '--no_auth', |
| 2548 | '-u', |
| 2549 | '--bucket', 'v8-wasm-fuzzer', |
| 2550 | '-s', 'src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2551 | ], |
| 2552 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2553 | |
| 2554 | # Pull down Node binaries for WebUI toolchain. |
| 2555 | { |
| 2556 | 'name': 'node_linux64', |
| 2557 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2558 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2559 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2560 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2561 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2562 | '--extract', |
| 2563 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2564 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2565 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 2566 | ], |
| 2567 | }, |
| 2568 | { |
| 2569 | 'name': 'node_mac', |
| 2570 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2571 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2572 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2573 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2574 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2575 | '--extract', |
| 2576 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2577 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2578 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 2579 | ], |
| 2580 | }, |
| 2581 | { |
| 2582 | 'name': 'node_win', |
| 2583 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2584 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2585 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2586 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2587 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2588 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2589 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2590 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 2591 | ], |
| 2592 | }, |
| 2593 | |
| 2594 | # Pull down NPM dependencies for WebUI toolchain. |
| 2595 | { |
| 2596 | 'name': 'webui_node_modules', |
| 2597 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2598 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2599 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2600 | '--no_resume', |
| 2601 | '--extract', |
| 2602 | '--no_auth', |
| 2603 | '--bucket', 'chromium-nodejs', |
| 2604 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 2605 | ], |
| 2606 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 2607 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2608 | # Download Telemetry's binary dependencies via conditionals |
| 2609 | { |
| 2610 | 'name': 'checkout_telemetry_binary_dependencies', |
| 2611 | 'condition': 'checkout_telemetry_dependencies', |
| 2612 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2613 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2614 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 2615 | ], |
| 2616 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 2617 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2618 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 2619 | { |
| 2620 | 'name': 'checkout_telemetry_benchmark_deps', |
| 2621 | 'condition': 'checkout_telemetry_dependencies', |
| 2622 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 2623 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2624 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 2625 | '-f', |
| 2626 | ], |
| 2627 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2628 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2629 | # This is used to ensure that all network operations are properly |
| 2630 | # annotated so we can document what they're for. |
| 2631 | { |
| 2632 | 'name': 'tools_traffic_annotation_linux', |
| 2633 | 'pattern': '.', |
| 2634 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2635 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2636 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2637 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2638 | '--no_auth', |
| 2639 | '--num_threads=4', |
| 2640 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2641 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 2642 | ], |
| 2643 | }, |
| 2644 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2645 | # This is used to ensure that all network operations are properly |
| 2646 | # annotated so we can document what they're for. |
| 2647 | { |
| 2648 | 'name': 'tools_traffic_annotation_windows', |
| 2649 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 2650 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2651 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2652 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2653 | '--no_resume', |
| 2654 | '--no_auth', |
| 2655 | '--num_threads=4', |
| 2656 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2657 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 2658 | ], |
| 2659 | }, |
| 2660 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2661 | # Pull down Zucchini test data. |
| 2662 | { |
| 2663 | 'name': 'zucchini_testdata', |
| 2664 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2665 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2666 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2667 | '--no_resume', |
| 2668 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 2669 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 2670 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 2671 | '--recursive', |
| 2672 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2673 | ], |
| 2674 | }, |
bsheedy | 7fbd0a5 | 2019-02-05 19:03:36 | [diff] [blame] | 2675 | # Pull down Android RenderTest goldens |
| 2676 | { |
| 2677 | 'name': 'Fetch Android RenderTest goldens', |
| 2678 | 'pattern': '.', |
| 2679 | 'condition': 'checkout_android', |
| 2680 | 'action': [ 'python', |
| 2681 | 'src/chrome/test/data/android/manage_render_test_goldens.py', |
| 2682 | 'download', |
| 2683 | ], |
| 2684 | }, |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 2685 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2686 | 'name': 'Fetch Android AFDO profile', |
| 2687 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 2688 | 'condition': 'checkout_android or checkout_linux', |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2689 | 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'], |
| 2690 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2691 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2692 | 'name': 'gvr_static_shim_android_arm_1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2693 | 'pattern': '\\.sha1', |
| 2694 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2695 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2696 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2697 | '--no_resume', |
| 2698 | '--no_auth', |
| 2699 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2700 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_1.a.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2701 | ], |
| 2702 | }, |
| 2703 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2704 | 'name': 'gvr_static_shim_android_arm_Cr', |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2705 | 'pattern': '\\.sha1', |
| 2706 | 'condition': 'checkout_android', |
| 2707 | 'action': [ 'python', |
| 2708 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2709 | '--no_resume', |
| 2710 | '--no_auth', |
| 2711 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2712 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_Cr.a.sha1', |
| 2713 | ], |
| 2714 | }, |
| 2715 | { |
| 2716 | 'name': 'gvr_static_shim_android_arm64_1', |
| 2717 | 'pattern': '\\.sha1', |
| 2718 | 'condition': 'checkout_android', |
| 2719 | 'action': [ 'python', |
| 2720 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2721 | '--no_resume', |
| 2722 | '--no_auth', |
| 2723 | '--bucket', 'chromium-gvr-static-shim', |
| 2724 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_1.a.sha1', |
| 2725 | ], |
| 2726 | }, |
| 2727 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2728 | 'name': 'gvr_static_shim_android_arm64_Cr', |
| 2729 | 'pattern': '\\.sha1', |
| 2730 | 'condition': 'checkout_android', |
| 2731 | 'action': [ 'python', |
| 2732 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2733 | '--no_resume', |
| 2734 | '--no_auth', |
| 2735 | '--bucket', 'chromium-gvr-static-shim', |
| 2736 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_Cr.a.sha1', |
| 2737 | ], |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2738 | }, |
| 2739 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2740 | 'name': 'vr_controller_test_api', |
| 2741 | 'pattern': '\\.sha1', |
| 2742 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2743 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2744 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2745 | '--no_resume', |
| 2746 | '--no_auth', |
| 2747 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 2748 | '-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] | 2749 | ], |
| 2750 | }, |
| 2751 | # Download VR test APKs only if the environment variable is set |
| 2752 | { |
| 2753 | 'name': 'vr_test_apks', |
| 2754 | 'pattern': '.', |
| 2755 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2756 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2757 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2758 | ], |
| 2759 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 2760 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 2761 | { |
| 2762 | 'name': 'ar_test_apks', |
| 2763 | 'pattern': '.', |
| 2764 | 'condition': 'checkout_android', |
| 2765 | 'action': [ 'python', |
| 2766 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 2767 | ], |
| 2768 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2769 | # Download Oculus SDK if appropriate. |
| 2770 | { |
| 2771 | 'name': 'libovr', |
| 2772 | 'pattern': '.', |
| 2773 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2774 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2775 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2776 | '--bucket', 'chrome-oculus-sdk', |
| 2777 | '--recursive', |
| 2778 | '--num_threads=10', |
| 2779 | '--directory', |
| 2780 | 'src/third_party/libovr/src', |
| 2781 | ], |
| 2782 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2783 | # Download common ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2784 | { |
| 2785 | 'name': 'ink-build', |
| 2786 | 'pattern': '.', |
| 2787 | 'condition': 'checkout_chromeos', |
| 2788 | 'action': [ 'python', |
| 2789 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2790 | '--no_resume', |
| 2791 | '--no_auth', |
| 2792 | '--num_threads=4', |
| 2793 | '--bucket', 'chromium-ink', |
| 2794 | '-d', 'src/third_party/ink/build', |
| 2795 | ], |
| 2796 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2797 | # Download wasm ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2798 | { |
| 2799 | 'name': 'ink-build-wasm', |
| 2800 | 'pattern': '.', |
| 2801 | 'condition': 'checkout_chromeos', |
| 2802 | 'action': [ 'python', |
| 2803 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2804 | '--no_resume', |
| 2805 | '--no_auth', |
| 2806 | '--num_threads=4', |
| 2807 | '--bucket', 'chromium-ink', |
| 2808 | '-d', 'src/third_party/ink/build/wasm', |
| 2809 | ], |
| 2810 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2811 | # Download wasm threaded ink resources for chromeos. |
| 2812 | { |
| 2813 | 'name': 'ink-build-wasm', |
| 2814 | 'pattern': '.', |
| 2815 | 'condition': 'checkout_chromeos', |
| 2816 | 'action': [ 'python', |
| 2817 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2818 | '--no_resume', |
| 2819 | '--no_auth', |
| 2820 | '--num_threads=4', |
| 2821 | '--bucket', 'chromium-ink', |
| 2822 | '-d', 'src/third_party/ink/build/wasm-threads', |
| 2823 | ], |
| 2824 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2825 | { |
| 2826 | # Pull doclava binaries if building for Android. |
| 2827 | 'name': 'doclava', |
| 2828 | 'pattern': '.', |
| 2829 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2830 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2831 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2832 | ], |
| 2833 | }, |
| 2834 | |
| 2835 | { |
| 2836 | 'name': 'fuchsia_sdk', |
| 2837 | 'pattern': '.', |
| 2838 | 'condition': 'checkout_fuchsia', |
| 2839 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2840 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2841 | 'src/build/fuchsia/update_sdk.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2842 | ], |
| 2843 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2844 | |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2845 | # Download CrOS simplechrome artifacts. The first hooks is for boards that |
| 2846 | # support VM images, the second hook for all other boards. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2847 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2848 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2849 | 'pattern': '.', |
| 2850 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2851 | '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] | 2852 | 'action': [ |
| 2853 | 'src/third_party/chromite/bin/cros', |
| 2854 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 2855 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2856 | '--use-external-config', |
Achuith Bhandarkar | 70e3890 | 2019-01-08 03:05:51 | [diff] [blame] | 2857 | '--require-exact-version', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2858 | '--nogn-gen', |
| 2859 | '--download-vm', |
| 2860 | '--board={cros_board}', |
| 2861 | '--cache-dir=src/build/cros_cache/', |
Benjamin Pastene | fab64fff | 2018-04-18 22:21:16 | [diff] [blame] | 2862 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 2863 | # enough to eject old toolchains from the cache. |
| 2864 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2865 | '--log-level=error', |
| 2866 | 'exit', |
| 2867 | ], |
| 2868 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2869 | { |
| 2870 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 2871 | 'pattern': '.', |
| 2872 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2873 | '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] | 2874 | 'action': [ |
| 2875 | 'src/third_party/chromite/bin/cros', |
| 2876 | 'chrome-sdk', |
| 2877 | '--nogoma', |
| 2878 | '--use-external-config', |
Achuith Bhandarkar | 70e3890 | 2019-01-08 03:05:51 | [diff] [blame] | 2879 | '--require-exact-version', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2880 | '--nogn-gen', |
| 2881 | '--board={cros_board}', |
| 2882 | '--cache-dir=src/build/cros_cache/', |
| 2883 | '--log-level=error', |
| 2884 | 'exit', |
| 2885 | ], |
| 2886 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2887 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2888 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 2889 | { |
| 2890 | 'name': 'vpython_common', |
| 2891 | 'pattern': '.', |
| 2892 | 'action': [ 'vpython', |
| 2893 | '-vpython-spec', 'src/.vpython', |
| 2894 | '-vpython-tool', 'install', |
| 2895 | ], |
| 2896 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2897 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 2898 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2899 | recursedeps = [ |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2900 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2901 | 'src/third_party/angle', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 2902 | 'src/third_party/openscreen/src', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 2903 | # src-internal has its own DEPS file to pull additional internal repos |
| 2904 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2905 | ] |