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