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