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 |
chromium-autoroll | c7f8f91 | 2019-09-18 16:58:18 | [diff] [blame] | 26 | # git commit -aspv_he |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 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', |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 33 | 'checkout_android_prebuilts_build_tools', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 34 | 'checkout_android_native_support', |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 35 | 'checkout_google_benchmark', |
Rohit Rao | 2b70cbc0 | 2019-02-21 16:31:27 | [diff] [blame] | 36 | 'checkout_ios_webkit', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 37 | 'checkout_nacl', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 38 | 'checkout_oculus_sdk', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 39 | 'checkout_openxr', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 40 | ] |
| 41 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 42 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 43 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 44 | # Variable that can be used to support multiple build scenarios, like having |
| 45 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 46 | # conditionally etc. |
| 47 | 'build_with_chromium': True, |
| 48 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 49 | # By default, we should check out everything needed to run on the main |
| 50 | # chromium waterfalls. This var can be also be set to "small", in order |
| 51 | # to skip things are not strictly needed to build chromium for development |
Nico Weber | 0602f69 | 2019-07-25 21:39:16 | [diff] [blame] | 52 | # purposes, by adding the following line to src.git's .gclient entry: |
| 53 | # "custom_vars": { "checkout_configuration": "small" }, |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 54 | 'checkout_configuration': 'default', |
| 55 | |
Michael Moss | c09fc5c | 2019-01-18 08:00:03 | [diff] [blame] | 56 | # By default, don't check out android. Will be overridden by gclient |
| 57 | # variables. |
| 58 | # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 59 | 'checkout_android': False, |
| 60 | |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 61 | # Pull in Android prebuilts build tools so we can create Java xrefs |
| 62 | 'checkout_android_prebuilts_build_tools': False, |
| 63 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 64 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 65 | # build ARC++ support libraries. |
| 66 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 67 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 68 | # By default, do not check out Chromium autofill captured sites test |
| 69 | # dependencies. These dependencies include very large numbers of very |
| 70 | # large web capture files. Captured sites test dependencies are also |
| 71 | # restricted to Googlers only. |
| 72 | 'checkout_chromium_autofill_test_dependencies': False, |
| 73 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 74 | # By default, do not check out Chromium password manager captured sites test |
| 75 | # dependencies. These dependencies include very large numbers of very |
| 76 | # large web capture files. Captured sites test dependencies are also |
| 77 | # restricted to Googlers only. |
| 78 | 'checkout_chromium_password_manager_test_dependencies': False, |
| 79 | |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 80 | # By default, do not check out Google Benchmark. The library is only used by a |
| 81 | # few specialized benchmarks that most developers do not interact with. Will |
| 82 | # be overridden by gclient variables. |
| 83 | 'checkout_google_benchmark': False, |
| 84 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 85 | # Check out and download nacl by default. This can be disabled e.g. with |
| 86 | # custom_vars. |
| 87 | 'checkout_nacl': True, |
| 88 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 89 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 90 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 91 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 92 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 93 | # Fetch the additional packages and files needed to run all of the |
| 94 | # telemetry tests. This is false by default as some stuff is only |
| 95 | # privately accessible. |
| 96 | 'checkout_telemetry_dependencies': False, |
| 97 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 98 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 99 | # process the raw profiles produced by instrumented targets (built with |
| 100 | # the gn arg 'use_clang_coverage'). |
| 101 | 'checkout_clang_coverage_tools': False, |
| 102 | |
Yuke Liao | b3a683e | 2020-04-29 01:43:59 | [diff] [blame] | 103 | # Fetch the pgo profiles to optimize official builds. |
| 104 | 'checkout_pgo_profiles': False, |
| 105 | |
George Burgess IV | a55e6bed | 2019-12-11 16:24:08 | [diff] [blame] | 106 | # Fetch clang-tidy into the same bin/ directory as our clang binary. |
| 107 | 'checkout_clang_tidy': False, |
| 108 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 109 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 110 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 111 | |
Patrick To | d8a469a | 2019-08-27 06:34:33 | [diff] [blame] | 112 | # By default checkout the OpenXR loader library only on Windows. The OpenXR |
| 113 | # backend for VR in Chromium is currently only supported for Windows, but |
| 114 | # support for other platforms may be added in the future. |
| 115 | 'checkout_openxr' : 'checkout_win', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 116 | |
Takuto Ikuta | e306cbad | 2018-12-06 16:43:55 | [diff] [blame] | 117 | 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| 118 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 119 | |
Arthur Wang | 95d62d4 | 2020-06-03 04:53:25 | [diff] [blame] | 120 | # By default bot checkouts the WPR archive files only when this |
| 121 | # flag is set True. |
| 122 | 'checkout_wpr_archives': False, |
| 123 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 124 | # By default, do not check out WebKit for iOS, as it is not needed unless |
| 125 | # running against ToT WebKit rather than system WebKit. This can be overridden |
| 126 | # e.g. with custom_vars. |
| 127 | 'checkout_ios_webkit': False, |
| 128 | |
Kevin Marshall | 9c4748c8 | 2019-08-23 18:46:50 | [diff] [blame] | 129 | # Fetches only the SDK boot images which match at least one of the whitelist |
| 130 | # entries in a comma-separated list. |
| 131 | # |
| 132 | # Only the X64 and ARM64 QEMU images are downloaded by default. Developers |
| 133 | # that need to boot on other target architectures or devices can opt to |
| 134 | # download more boot images. Example of images include: |
| 135 | # |
| 136 | # Emulation: |
| 137 | # qemu.x64, qemu.arm64 |
| 138 | # Hardware: |
| 139 | # generic.x64, generic.arm64 |
| 140 | # |
| 141 | # Wildcards are supported (e.g. "qemu.*"). |
| 142 | 'checkout_fuchsia_boot_images': "qemu.x64,qemu.arm64", |
| 143 | |
Stephen Roe | 3c9f585 | 2019-11-13 17:25:43 | [diff] [blame] | 144 | # By default, do not check out files required to run fuchsia tests in |
| 145 | # qemu on linux-arm64 machines. |
| 146 | 'checkout_fuchsia_for_arm64_host': False, |
| 147 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 148 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 149 | # dependencies. Other Chrome OS builds should always define this explicitly. |
Ben Pastene | 1d6b0d0 | 2020-04-28 15:55:49 | [diff] [blame] | 150 | 'cros_boards': '', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 151 | # Building for CrOS is only supported on linux currently. |
Ben Pastene | 1d6b0d0 | 2020-04-28 15:55:49 | [diff] [blame] | 152 | 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_boards}" != "")', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 153 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 154 | # as an expression. |
Ben Pastene | 1d6b0d0 | 2020-04-28 15:55:49 | [diff] [blame] | 155 | 'cros_download_vm': '(("{cros_boards}" == "amd64-generic") or ("{cros_boards}" == "betty")) or ("{cros_boards}" == "betty-pi-arc")', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 156 | # Should we build and test for public (ie: full) CrOS images, or private |
| 157 | # (ie: release) images. |
| 158 | 'use_public_cros_config': 'not checkout_src_internal', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 159 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 160 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 161 | 'angle_root': 'src/third_party/angle', |
| 162 | |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 163 | # luci-go CIPD package version. |
Takuto Ikuta | 66c3065 | 2019-07-12 02:43:33 | [diff] [blame] | 164 | # Make sure the revision is uploaded by infra-packagers builder. |
| 165 | # https://ci.chromium.org/p/infra-internal/g/infra-packagers/console |
Ye Kuang | 6f7b0c15 | 2020-04-16 03:58:25 | [diff] [blame] | 166 | 'luci_go': 'git_revision:56ae79476e3caf14da59d75118408aa778637936', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 167 | |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 168 | # This can be overridden, e.g. with custom_vars, to build clang from HEAD |
| 169 | # instead of downloading the prebuilt pinned revision. |
| 170 | 'llvm_force_head_revision': False, |
| 171 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 172 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 173 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 174 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 175 | 'chromium_git': 'https://chromium.googlesource.com', |
| 176 | 'dawn_git': 'https://dawn.googlesource.com', |
| 177 | 'pdfium_git': 'https://pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 178 | 'quiche_git': 'https://quiche.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 179 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 180 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 181 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 182 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 183 | # the commit queue can handle CLs rolling Skia |
| 184 | # and whatever else without interference from each other. |
chromium-autoroll | 408035c2 | 2020-06-09 23:37:01 | [diff] [blame] | 185 | 'skia_revision': '990a04ecd5e84f8d0fcad968a8fab8550e4a6cd1', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 186 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 187 | # the commit queue can handle CLs rolling V8 |
| 188 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | 1debb64 | 2020-06-08 15:52:35 | [diff] [blame] | 189 | 'v8_revision': '9912e35d594bf00cd78697889beff6b238ebe66d', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 190 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 191 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 192 | # and whatever else without interference from each other. |
Yiwei Zhang | f3d8923 | 2020-06-04 19:59:22 | [diff] [blame] | 193 | 'swarming_revision': '4c095d04179dc725a300085ae21fe3b79900d072', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 194 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 195 | # the commit queue can handle CLs rolling ANGLE |
| 196 | # and whatever else without interference from each other. |
chromium-autoroll | 0d19763 | 2020-06-09 22:48:48 | [diff] [blame] | 197 | 'angle_revision': 'd80d9044857e168bb7945eb726a451c20140b80c', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 198 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 199 | # the commit queue can handle CLs rolling SwiftShader |
| 200 | # and whatever else without interference from each other. |
chromium-autoroll | a325adb5 | 2020-06-05 04:51:20 | [diff] [blame] | 201 | 'swiftshader_revision': 'e3eb327e8c3c724a415fa4d5f4805f2e281f4760', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 202 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 203 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 204 | # and whatever else without interference from each other. |
chromium-autoroll | b274fe0 | 2020-06-06 07:15:07 | [diff] [blame] | 205 | 'pdfium_revision': '8d477f73bf8bc4f618e83b46a73cd5f7765e43b8', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 206 | # Three lines of non-changing comments so that |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 207 | # the commit queue can handle CLs rolling BoringSSL |
| 208 | # and whatever else without interference from each other. |
David Benjamin | 0cf6267 | 2019-02-11 20:30:55 | [diff] [blame] | 209 | # |
| 210 | # Note this revision should be updated with |
| 211 | # third_party/boringssl/roll_boringssl.py, not roll-dep. |
David Benjamin | dea5ec9 | 2020-06-05 20:29:18 | [diff] [blame] | 212 | 'boringssl_revision': '88024df12147e56b6abd66b743ff441a0aaa09a8', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 213 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 214 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 215 | # and whatever else without interference from each other. |
Elly Fong-Jones | 86b7e2a | 2019-02-21 17:02:01 | [diff] [blame] | 216 | 'google_toolbox_for_mac_revision': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 217 | # Three lines of non-changing comments so that |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 218 | # the commit queue can handle CLs rolling googletest |
| 219 | # and whatever else without interference from each other. |
chromium-autoroll | f70a398 | 2020-06-05 18:42:20 | [diff] [blame] | 220 | 'googletest_revision': '4fe018038f87675c083d0cfb6a6b57c274fb1753', |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 221 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 222 | # the commit queue can handle CLs rolling lighttpd |
| 223 | # and whatever else without interference from each other. |
| 224 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 225 | # Three lines of non-changing comments so that |
| 226 | # the commit queue can handle CLs rolling lss |
| 227 | # and whatever else without interference from each other. |
Michael Forney | 363dd38 | 2020-01-25 00:52:01 | [diff] [blame] | 228 | 'lss_revision': 'f70e2f1641e280e777edfdad7f73a2cfa38139c7', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 229 | # Three lines of non-changing comments so that |
| 230 | # the commit queue can handle CLs rolling NaCl |
| 231 | # and whatever else without interference from each other. |
chromium-autoroll | f3ca9bc2 | 2020-05-19 21:37:59 | [diff] [blame] | 232 | 'nacl_revision': '87616f7ce2ea8383efd3731960c15f4ba5852d93', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 233 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 234 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 235 | # and whatever else without interference from each other. |
chromium-autoroll | 6b268e8 | 2020-05-18 20:39:46 | [diff] [blame] | 236 | 'freetype_revision': '62fea391fa9993f8c1d206a50080d690178ce518', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 237 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 238 | # the commit queue can handle CLs rolling HarfBuzz |
| 239 | # and whatever else without interference from each other. |
Dominik Röttsches | 978a09b | 2020-05-25 15:21:44 | [diff] [blame] | 240 | 'harfbuzz_revision': 'e3af529e511ca492284cdd9f4584666b88a9e00f', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 241 | # Three lines of non-changing comments so that |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 242 | # the commit queue can handle CLs rolling Emoji Segmenter |
| 243 | # and whatever else without interference from each other. |
| 244 | 'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e', |
| 245 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 246 | # the commit queue can handle CLs rolling catapult |
| 247 | # and whatever else without interference from each other. |
chromium-autoroll | de0dcd3 | 2020-06-09 18:10:19 | [diff] [blame] | 248 | 'catapult_revision': '2943cc478e467691a773260b93bb9b40e02f4047', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 249 | # Three lines of non-changing comments so that |
| 250 | # the commit queue can handle CLs rolling libFuzzer |
| 251 | # and whatever else without interference from each other. |
Max Moroz | 73f754bd | 2019-11-22 21:10:51 | [diff] [blame] | 252 | 'libfuzzer_revision': 'debe7d2d1982e540fbd6bd78604bf001753f9e74', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 253 | # Three lines of non-changing comments so that |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 254 | # the commit queue can handle CLs rolling devtools-frontend |
| 255 | # and whatever else without interference from each other. |
chromium-autoroll | 3fd74a4 | 2020-06-09 21:16:01 | [diff] [blame] | 256 | 'devtools_frontend_revision': '750036ef9035973f632d76483e1222c124c4b9e2', |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 257 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 258 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 259 | # and whatever else without interference from each other. |
Jonathan Metzman | 85809f64 | 2019-01-24 22:55:58 | [diff] [blame] | 260 | 'libprotobuf-mutator': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 261 | # Three lines of non-changing comments so that |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 262 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 263 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 264 | 'android_sdk_build-tools_version': 'n-b1Qd7iFb8qzHlr1C_jIeu070UDgO_BwePtH42UqGcC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 265 | # Three lines of non-changing comments so that |
| 266 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 267 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 268 | 'android_sdk_emulator_version': 'f4WdgkPvDdVCE8zBWPzcSIj4N9WFhKp3CSKDWylXuLEC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 269 | # Three lines of non-changing comments so that |
| 270 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 271 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 272 | 'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 273 | # Three lines of non-changing comments so that |
| 274 | # the commit queue can handle CLs rolling android_sdk_patcher_version |
| 275 | # and whatever else without interference from each other. |
| 276 | 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 277 | # Three lines of non-changing comments so that |
| 278 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 279 | # and whatever else without interference from each other. |
Nico Weber | 3ddb3da | 2020-04-14 19:07:30 | [diff] [blame] | 280 | 'android_sdk_platform-tools_version': 'zMVtBEihXp2Z0NYFNjLLmNrwy6252b_YWG6sh2l0QAcC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 281 | # Three lines of non-changing comments so that |
| 282 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 283 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 284 | 'android_sdk_platforms_version': 'yb33klKQV9UzzB-lDSsq36vzhTXOUZ2aRONBvPGwvdcC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 285 | # Three lines of non-changing comments so that |
| 286 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 287 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 288 | 'android_sdk_sources_version': '4gxhM8E62bvZpQs7Q3d0DinQaW0RLCIefhXrQBFkNy8C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 289 | # Three lines of non-changing comments so that |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 290 | # the commit queue can handle CLs rolling feed |
| 291 | # and whatever else without interference from each other. |
chromium-autoroll | e73dda4 | 2020-06-08 09:20:01 | [diff] [blame] | 292 | 'spv_tools_revision': '7c213720bb46ea9a81caa9f8dc24df0f1957de05', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 293 | # Three lines of non-changing comments so that |
| 294 | # the commit queue can handle CLs rolling feed |
| 295 | # and whatever else without interference from each other. |
Ryan Harrison | 3583678 | 2020-05-25 21:38:58 | [diff] [blame] | 296 | 'spv_headers_revision': 'ac638f1815425403e946d0ab78bac71d2bdbf3be', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 297 | # Three lines of non-changing comments so that |
| 298 | # the commit queue can handle CLs rolling feed |
| 299 | # and whatever else without interference from each other. |
Bryan Bernhart | f50a6af | 2020-05-30 00:42:13 | [diff] [blame] | 300 | 'spirv_cross_revision': 'd385bf096f5dabbc4cdaeb6872b0f64be1a63ad0', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 301 | # Three lines of non-changing comments so that |
| 302 | # the commit queue can handle CLs rolling feed |
| 303 | # and whatever else without interference from each other. |
chromium-autoroll | 4e2c5670 | 2020-06-09 21:14:40 | [diff] [blame] | 304 | 'shaderc_revision': '4ec77979ecd717f88e648dea42851ee4a0385fff', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 305 | # Three lines of non-changing comments so that |
| 306 | # the commit queue can handle CLs rolling feed |
| 307 | # and whatever else without interference from each other. |
chromium-autoroll | 03e87a0f | 2020-06-09 20:27:47 | [diff] [blame] | 308 | 'dawn_revision': '14f20b0ab38d5996d2c2716156912491783d93fa', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 309 | # Three lines of non-changing comments so that |
| 310 | # the commit queue can handle CLs rolling feed |
| 311 | # and whatever else without interference from each other. |
Fan Yang | 9c47dde9 | 2020-06-09 17:42:31 | [diff] [blame] | 312 | 'quiche_revision': 'faf8b0277550de66bad3e6e562f54908969b6511', |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 313 | # Three lines of non-changing comments so that |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 314 | # the commit queue can handle CLs rolling ios_webkit |
| 315 | # and whatever else without interference from each other. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 316 | 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
Ben Wagner | 3743d539 | 2019-09-26 19:20:36 | [diff] [blame] | 317 | # Three lines of non-changing comments so that |
| 318 | # the commit queue can handle CLs rolling libexpat |
| 319 | # and whatever else without interference from each other. |
Ben Wagner | 070cff6 | 2020-04-20 19:23:54 | [diff] [blame] | 320 | 'libexpat_revision': 'e976867fb57a0cd87e3b0fe05d59e0ed63c6febb', |
Nigel Tao | b517eb891 | 2019-10-23 03:36:24 | [diff] [blame] | 321 | # Three lines of non-changing comments so that |
| 322 | # the commit queue can handle CLs rolling wuffs |
| 323 | # and whatever else without interference from each other. |
Nigel Tao | 251d5b1 | 2019-11-04 16:34:05 | [diff] [blame] | 324 | 'wuffs_revision': '7ec252876541ec203659949450fafddc148b606e', |
Nigel Tao | 3aa7214 | 2019-12-03 22:05:41 | [diff] [blame] | 325 | # Three lines of non-changing comments so that |
| 326 | # the commit queue can handle CLs rolling libgifcodec |
| 327 | # and whatever else without interference from each other. |
Brian Osman | a95e585 | 2020-02-05 22:22:19 | [diff] [blame] | 328 | 'libgifcodec_revision': 'd06d2a6d42baf6c0c91cacc28df2542a911d05fe', |
Wan-Teh Chang | 75fd532 | 2020-04-08 01:32:18 | [diff] [blame] | 329 | # Three lines of non-changing comments so that |
| 330 | # the commit queue can handle CLs rolling libavif |
| 331 | # and whatever else without interference from each other. |
Wan-Teh Chang | eaa96b7 | 2020-05-09 20:54:13 | [diff] [blame] | 332 | 'libavif_revision': 'aee0c3f1ebcc7d637efd2fd304a005464fe14172', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 333 | |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 334 | # TODO(crbug.com/941824): The values below need to be kept in sync |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 335 | # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| 336 | # update the other. There is a presubmit check that checks that |
| 337 | # you've done so; if you are adding new tools to //buildtools and |
| 338 | # hence new revisions to this list, make sure you update the |
| 339 | # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| 340 | # revisions. |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 341 | |
| 342 | # GN CIPD package version. |
Robert Sesek | 9872404 | 2020-05-19 22:51:31 | [diff] [blame] | 343 | 'gn_version': 'git_revision:d0a6f072070988e7b038496c4e7d6c562b649732', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 344 | |
Nico Weber | 4647fbba | 2019-04-04 07:38:59 | [diff] [blame] | 345 | # Also, if you change these, update buildtools/DEPS too. Also update the |
| 346 | # libc++ svn_revision in //buildtools/deps_revisions.gni. |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 347 | 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 348 | 'libcxx_revision': 'd9040c75cfea5928c804ab7c235fed06a63f743a', |
| 349 | 'libcxxabi_revision': '196ba1aaa8ac285d94f4ea8d9836390a45360533', |
Nico Weber | 91584c6 | 2020-04-23 20:15:38 | [diff] [blame] | 350 | 'libunwind_revision': 'd999d54f4bca789543a2eb6c995af2d9b5a1f3ed', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 351 | } |
| 352 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 353 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 354 | # If you need to add a new host, contact chrome infrastracture team. |
| 355 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 356 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 357 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 358 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 359 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 360 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 361 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 362 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 363 | 'pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 364 | 'quiche.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 365 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 366 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 367 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 368 | ] |
| 369 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 370 | deps = { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 371 | 'src/buildtools/clang_format/script': |
| 372 | Var('chromium_git') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| 373 | Var('clang_format_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 374 | 'src/buildtools/linux64': { |
| 375 | 'packages': [ |
| 376 | { |
| 377 | 'package': 'gn/gn/linux-amd64', |
| 378 | 'version': Var('gn_version'), |
| 379 | } |
| 380 | ], |
| 381 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 382 | 'condition': 'host_os == "linux"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 383 | }, |
| 384 | 'src/buildtools/mac': { |
| 385 | 'packages': [ |
| 386 | { |
| 387 | 'package': 'gn/gn/mac-amd64', |
| 388 | 'version': Var('gn_version'), |
| 389 | } |
| 390 | ], |
| 391 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 392 | 'condition': 'host_os == "mac"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 393 | }, |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 394 | 'src/buildtools/third_party/libc++/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 395 | Var('chromium_git') + |
| 396 | '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 397 | Var('libcxx_revision'), |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 398 | 'src/buildtools/third_party/libc++abi/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 399 | Var('chromium_git') + |
| 400 | '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 401 | Var('libcxxabi_revision'), |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 402 | 'src/buildtools/third_party/libunwind/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 403 | Var('chromium_git') + |
| 404 | '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 405 | Var('libunwind_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 406 | 'src/buildtools/win': { |
| 407 | 'packages': [ |
| 408 | { |
| 409 | 'package': 'gn/gn/windows-amd64', |
| 410 | 'version': Var('gn_version'), |
| 411 | } |
| 412 | ], |
| 413 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 414 | 'condition': 'host_os == "win"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 415 | }, |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 416 | |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 417 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | eaac8929 | 2020-02-04 21:35:33 | [diff] [blame] | 418 | Var('chromium_git') + '/media_router.git' + '@' + 'd4389c097c61fa8c5aa5eb7c3ba34ee203dd62e3', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 419 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 420 | 'src/android_webview/tools/cts_archive': { |
| 421 | 'packages': [ |
| 422 | { |
| 423 | 'package': 'chromium/android_webview/tools/cts_archive', |
Andrew Luo | 503a5e84 | 2020-02-03 21:06:10 | [diff] [blame] | 424 | 'version': 'Zmi8uHgTaLXGm9f8Fu_0U-Xa6BljyNjsyL0Nq7VouKoC', |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 425 | }, |
| 426 | ], |
| 427 | 'condition': 'checkout_android', |
| 428 | 'dep_type': 'cipd', |
| 429 | }, |
| 430 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 431 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 432 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 433 | 'condition': 'checkout_mac', |
| 434 | }, |
| 435 | |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 436 | 'src/tools/clang/dsymutil': { |
| 437 | 'packages': [ |
| 438 | { |
| 439 | 'package': 'chromium/llvm-build-tools/dsymutil', |
Reid Kleckner | 5145656 | 2019-11-07 20:06:41 | [diff] [blame] | 440 | 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 441 | } |
| 442 | ], |
Sylvain Defresne | 03f0d10 | 2019-11-22 17:04:16 | [diff] [blame] | 443 | 'condition': 'checkout_mac or checkout_ios', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 444 | 'dep_type': 'cipd', |
| 445 | }, |
| 446 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 447 | 'src/chrome/test/data/autofill/captured_sites': { |
| 448 | 'packages': [ |
| 449 | { |
| 450 | 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
Ian Struiksma | b883f45 | 2020-06-01 21:37:18 | [diff] [blame] | 451 | 'version': 'h9Gg7yubBBAUojG00C-9GgJasXr9kpjgzhI3Md4SD9YC', |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 452 | } |
| 453 | ], |
| 454 | 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 455 | 'dep_type': 'cipd', |
| 456 | }, |
| 457 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 458 | 'src/chrome/test/data/password/captured_sites': { |
| 459 | 'packages': [ |
| 460 | { |
| 461 | 'package': 'chromium/chrome/test/data/password/captured_sites', |
Ian Struiksma | 809938a2 | 2019-10-25 21:16:18 | [diff] [blame] | 462 | 'version': 'MuT6UWjyB52nWFDuu4RCv4o_vMPIZdI4P2m2YsC66fAC', |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 463 | } |
| 464 | ], |
| 465 | 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 466 | 'dep_type': 'cipd', |
| 467 | }, |
| 468 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 469 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 470 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 471 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 472 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 473 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 474 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 475 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 476 | 'packages': [ |
| 477 | { |
| 478 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 479 | 'version': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 480 | }, |
| 481 | ], |
| 482 | 'condition': 'checkout_mac', |
| 483 | 'dep_type': 'cipd', |
| 484 | }, |
| 485 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 486 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 487 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 488 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 489 | 'src/ios/third_party/earl_grey/src': { |
Rohit Rao | 7d94fa9 | 2019-10-30 11:13:44 | [diff] [blame] | 490 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'ff524fb646253b0cbc05aa6d0b327b6b3ddd0385', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 491 | 'condition': 'checkout_ios', |
| 492 | }, |
| 493 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 494 | 'src/ios/third_party/earl_grey2/src': { |
Rohit Rao | 3ab0aa5 | 2019-10-31 14:26:01 | [diff] [blame] | 495 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '8fbc948c8479f54b7729b0f290c82ca1b5ee4268', |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 496 | 'condition': 'checkout_ios', |
| 497 | }, |
| 498 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 499 | 'src/ios/third_party/edo/src': { |
Lindsay Pasricha | aa0256c | 2020-01-13 20:00:26 | [diff] [blame] | 500 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '243fc89ae95b24717d41f3786f6a9abeeef87c92', |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 501 | 'condition': 'checkout_ios', |
| 502 | }, |
| 503 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 504 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 505 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 506 | 'condition': 'checkout_ios', |
| 507 | }, |
| 508 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 509 | 'src/ios/third_party/firebase': { |
| 510 | 'packages': [ |
| 511 | { |
| 512 | 'package': 'chromium/third_party/firebase_ios', |
Chris Lu | 7b7dcd3 | 2020-02-07 02:45:45 | [diff] [blame] | 513 | 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 514 | }, |
| 515 | ], |
| 516 | 'condition': 'checkout_ios', |
| 517 | 'dep_type': 'cipd', |
| 518 | }, |
| 519 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 520 | 'src/ios/third_party/fishhook/src': { |
Lindsay Pasricha | 9c18c2b | 2019-10-09 23:05:13 | [diff] [blame] | 521 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + '66315a9c251edfe92f669ae2deeac0d75374c948', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 522 | 'condition': 'checkout_ios', |
| 523 | }, |
| 524 | |
| 525 | 'src/ios/third_party/gcdwebserver/src': { |
| 526 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 527 | 'condition': 'checkout_ios', |
| 528 | }, |
| 529 | |
| 530 | 'src/ios/third_party/material_components_ios/src': { |
Internal Frameworks Autoroller | 49519e7 | 2020-06-08 22:58:56 | [diff] [blame] | 531 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'dee8934c69d66b70b05a2cf2ccf02b5c805349f3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 532 | 'condition': 'checkout_ios', |
| 533 | }, |
| 534 | |
| 535 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
Internal Frameworks Autoroller | 80a81a1 | 2020-01-28 14:44:29 | [diff] [blame] | 536 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '93acc021e3034898716028822cb802a3a816be7e', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 537 | 'condition': 'checkout_ios', |
| 538 | }, |
| 539 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 540 | 'src/ios/third_party/material_internationalization_ios/src': { |
iOS Autoroller | e05fdaf | 2018-12-13 05:28:55 | [diff] [blame] | 541 | '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] | 542 | 'condition': 'checkout_ios', |
| 543 | }, |
| 544 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 545 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
Internal Frameworks Autoroller | 80a81a1 | 2020-01-28 14:44:29 | [diff] [blame] | 546 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 547 | 'condition': 'checkout_ios', |
| 548 | }, |
| 549 | |
| 550 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 551 | '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] | 552 | 'condition': 'checkout_ios', |
| 553 | }, |
| 554 | |
| 555 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
iOS Autoroller | efb260a | 2018-12-06 02:20:00 | [diff] [blame] | 556 | '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] | 557 | 'condition': 'checkout_ios', |
| 558 | }, |
| 559 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 560 | 'src/ios/third_party/motion_interchange_objc/src': { |
iOS Autoroller | d5b8633f | 2019-03-08 21:07:25 | [diff] [blame] | 561 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 562 | 'condition': 'checkout_ios', |
| 563 | }, |
| 564 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 565 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 0193585 | 2019-03-12 12:33:45 | [diff] [blame] | 566 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 567 | 'condition': 'checkout_ios', |
| 568 | }, |
| 569 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 570 | 'src/ios/third_party/motion_transitioning_objc/src': { |
chromium-autoroll | c52e680 | 2019-06-26 20:47:26 | [diff] [blame] | 571 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '5bb0d577dd78472536480496ace115bc593ed0e1', |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 572 | 'condition': 'checkout_ios', |
| 573 | }, |
| 574 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 575 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 576 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 577 | 'condition': 'checkout_ios', |
| 578 | }, |
| 579 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 580 | 'src/ios/third_party/webkit/src': { |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 581 | 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + |
| 582 | '@' + Var('ios_webkit_revision'), |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 583 | 'condition': 'checkout_ios and checkout_ios_webkit' |
| 584 | }, |
| 585 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 586 | 'src/media/cdm/api': |
Xiaohan Wang | af457b6 | 2020-04-20 20:11:09 | [diff] [blame] | 587 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'fc5afac6847dc61addc1177103aa602e71a9ecac', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 588 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 589 | 'src/native_client': { |
| 590 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 591 | 'condition': 'checkout_nacl', |
| 592 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 593 | |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 594 | 'src/net/third_party/quiche/src': |
| 595 | Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| 596 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 597 | 'src/tools/luci-go': { |
| 598 | 'packages': [ |
| 599 | { |
| 600 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 601 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 602 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 603 | { |
| 604 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 605 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 606 | }, |
| 607 | { |
| 608 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 609 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 610 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 611 | ], |
| 612 | 'dep_type': 'cipd', |
| 613 | }, |
| 614 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 615 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 616 | # third_party/spirv-cross/src because its header files are at the root of |
| 617 | # the repository and dependencies include them like so: |
| 618 | # #include "spirv-cross/spirv_glsl.hpp" |
| 619 | 'src/third_party/spirv-cross/spirv-cross': |
| 620 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 621 | Var('spirv_cross_revision'), |
| 622 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 623 | 'src/third_party/spirv-headers/src': |
| 624 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 625 | Var('spv_headers_revision'), |
| 626 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 627 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 628 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 629 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 630 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 631 | 'src/third_party/shaderc/src': |
| 632 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 633 | Var('shaderc_revision'), |
| 634 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 635 | 'src/third_party/accessibility_test_framework': { |
| 636 | 'packages': [ |
| 637 | { |
| 638 | 'package': 'chromium/third_party/accessibility-test-framework', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 639 | 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 640 | }, |
| 641 | ], |
| 642 | 'condition': 'checkout_android', |
| 643 | 'dep_type': 'cipd', |
| 644 | }, |
| 645 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 646 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 647 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 648 | 'condition': 'checkout_android', |
| 649 | }, |
| 650 | |
Mohamed Heikal | 95797a58 | 2020-03-05 22:45:44 | [diff] [blame] | 651 | 'src/third_party/android_protoc': { |
| 652 | 'packages': [ |
| 653 | { |
| 654 | 'package': 'chromium/third_party/android_protoc', |
Mohamed Heikal | e278e9a | 2020-06-05 17:38:47 | [diff] [blame] | 655 | 'version': 'jtrjlp1zR2hubDA9R5NKk4GwXfuuRhoXts7tgjevxDMC', |
Mohamed Heikal | 95797a58 | 2020-03-05 22:45:44 | [diff] [blame] | 656 | }, |
| 657 | ], |
| 658 | 'condition': 'checkout_android', |
| 659 | 'dep_type': 'cipd', |
| 660 | }, |
| 661 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 662 | 'src/third_party/android_ndk': { |
Jamie Madill | 5269c497 | 2019-11-21 02:37:32 | [diff] [blame] | 663 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 664 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 665 | }, |
| 666 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 667 | 'src/third_party/android_support_test_runner': { |
| 668 | 'packages': [ |
| 669 | { |
| 670 | 'package': 'chromium/third_party/android_support_test_runner', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 671 | 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 672 | }, |
| 673 | ], |
| 674 | 'condition': 'checkout_android', |
| 675 | 'dep_type': 'cipd', |
| 676 | }, |
| 677 | |
| 678 | 'src/third_party/android_system_sdk': { |
| 679 | 'packages': [ |
| 680 | { |
| 681 | 'package': 'chromium/third_party/android_system_sdk', |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 682 | 'version': '4IAlMU4jo15KjMPF3EUnrPZs0RYoPW8n9jSJ4dvHDWUC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 683 | }, |
| 684 | ], |
| 685 | 'condition': 'checkout_android', |
| 686 | 'dep_type': 'cipd', |
| 687 | }, |
| 688 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 689 | 'src/third_party/android_build_tools/aapt2': { |
| 690 | 'packages': [ |
| 691 | { |
Mohamed Heikal | 2747b4b | 2018-10-31 22:20:42 | [diff] [blame] | 692 | 'package': 'chromium/third_party/android_build_tools/aapt2', |
Mohamed Heikal | 0239ee1 | 2020-05-07 00:38:44 | [diff] [blame] | 693 | 'version': 'R2k5wwOlIaS6sjv2TIyHotiPJod-6KqnZO8NH-KFK8sC', |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 694 | }, |
| 695 | ], |
| 696 | 'condition': 'checkout_android', |
| 697 | 'dep_type': 'cipd', |
| 698 | }, |
| 699 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 700 | 'src/third_party/android_build_tools/art': { |
| 701 | 'packages': [ |
| 702 | { |
| 703 | 'package': 'chromium/third_party/android_build_tools/art', |
| 704 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 705 | }, |
| 706 | ], |
| 707 | 'condition': 'checkout_android', |
| 708 | 'dep_type': 'cipd', |
| 709 | }, |
| 710 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 711 | 'src/third_party/android_build_tools/bundletool': { |
| 712 | 'packages': [ |
| 713 | { |
Peter Wen | ab7bffd | 2020-01-24 02:13:26 | [diff] [blame] | 714 | 'package': 'chromium/third_party/android_tools_bundletool', |
Andrew Grieve | e9ef45e | 2020-03-11 21:16:42 | [diff] [blame] | 715 | 'version': 'Yyhy8FicC3R0ATRzWqGNh4ffsCLz_0nu_BjmNPAdhvIC', |
Peter Wen | ab7bffd | 2020-01-24 02:13:26 | [diff] [blame] | 716 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 717 | ], |
| 718 | 'condition': 'checkout_android', |
| 719 | 'dep_type': 'cipd', |
| 720 | }, |
| 721 | |
Peter Conn | 6eb0e1d | 2019-08-08 07:39:05 | [diff] [blame] | 722 | 'src/third_party/android_sdk/androidx_browser/src': { |
Ella Ge | 365ee40 | 2020-06-05 19:26:44 | [diff] [blame] | 723 | 'url': Var('chromium_git') + '/external/gob/android/platform/frameworks/support/browser.git' + '@' + 'ac2f9c348999e8943567c6e4d50a82a5010ca263', |
Peter Conn | 6eb0e1d | 2019-08-08 07:39:05 | [diff] [blame] | 724 | 'condition': 'checkout_android', |
| 725 | }, |
| 726 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 727 | 'src/third_party/android_sdk/public': { |
| 728 | 'packages': [ |
| 729 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 730 | 'package': 'chromium/third_party/android_sdk/public/build-tools/29.0.2', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 731 | 'version': Var('android_sdk_build-tools_version'), |
| 732 | }, |
| 733 | { |
| 734 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 735 | 'version': Var('android_sdk_emulator_version'), |
| 736 | }, |
| 737 | { |
| 738 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 739 | 'version': Var('android_sdk_extras_version'), |
| 740 | }, |
| 741 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 742 | 'package': 'chromium/third_party/android_sdk/public/patcher', |
| 743 | 'version': Var('android_sdk_patcher_version'), |
| 744 | }, |
| 745 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 746 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 747 | 'version': Var('android_sdk_platform-tools_version'), |
| 748 | }, |
| 749 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 750 | 'package': 'chromium/third_party/android_sdk/public/platforms/android-29', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 751 | 'version': Var('android_sdk_platforms_version'), |
| 752 | }, |
| 753 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 754 | 'package': 'chromium/third_party/android_sdk/public/sources/android-29', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 755 | 'version': Var('android_sdk_sources_version'), |
| 756 | }, |
| 757 | { |
Andrew Grieve | 13128c9 | 2020-01-06 22:10:27 | [diff] [blame] | 758 | 'package': 'chromium/third_party/android_sdk/public/cmdline-tools', |
| 759 | 'version': 'CR25ixsRhwuRnhdgDpGFyl9S0C_0HO9SUgFrwX46zq8C', |
| 760 | }, |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 761 | ], |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 762 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 763 | 'dep_type': 'cipd', |
| 764 | }, |
| 765 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 766 | 'src/third_party/angle': |
| 767 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 768 | |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 769 | 'src/third_party/dav1d/libdav1d': |
Dale Curtis | 8bd26aa6 | 2020-05-15 00:07:04 | [diff] [blame] | 770 | Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + 'b585f051c365bbada36bd066dd0a8a237fbf9dca', |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 771 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 772 | 'src/third_party/dawn': |
| 773 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 774 | |
| 775 | 'src/third_party/glfw/src': |
Corentin Wallez | 3a71757 | 2018-11-19 12:37:30 | [diff] [blame] | 776 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 777 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 778 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 779 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 780 | 'condition': 'checkout_android', |
| 781 | }, |
| 782 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 783 | 'src/third_party/bazel': { |
| 784 | 'packages': [ |
| 785 | { |
| 786 | 'package': 'chromium/third_party/bazel', |
Andrew Grieve | 8a3a5c77 | 2019-11-12 22:27:04 | [diff] [blame] | 787 | 'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 788 | }, |
| 789 | ], |
| 790 | 'condition': 'checkout_android', |
| 791 | 'dep_type': 'cipd', |
| 792 | }, |
| 793 | |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 794 | 'src/third_party/google_benchmark/src': { |
| 795 | 'url': Var('chromium_git') + '/external/github.com/google/benchmark.git' + '@' + '367119482ff4abc3d73e4a109b410090fc281337', |
| 796 | 'condition': 'checkout_google_benchmark', |
| 797 | }, |
| 798 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 799 | 'src/third_party/boringssl/src': |
| 800 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 801 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 802 | 'src/third_party/bouncycastle': { |
| 803 | 'packages': [ |
| 804 | { |
| 805 | 'package': 'chromium/third_party/bouncycastle', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 806 | 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 807 | }, |
| 808 | ], |
| 809 | 'condition': 'checkout_android', |
| 810 | 'dep_type': 'cipd', |
| 811 | }, |
| 812 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 813 | 'src/third_party/breakpad/breakpad': |
Michael Moss | 2cda93f5 | 2020-06-05 17:19:50 | [diff] [blame] | 814 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '2757a2c9c819fcae3784576aef0c8400c7ad06d7', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 815 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 816 | 'src/third_party/byte_buddy': { |
| 817 | 'packages': [ |
| 818 | { |
| 819 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 820 | 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 821 | }, |
| 822 | ], |
| 823 | 'condition': 'checkout_android', |
| 824 | 'dep_type': 'cipd', |
| 825 | }, |
| 826 | |
Andrew Luo | 948028e | 2019-08-16 21:18:21 | [diff] [blame] | 827 | 'src/third_party/byte_buddy/android_sdk_build_tools_25_0_2': { |
| 828 | 'packages': [ |
| 829 | { |
| 830 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 831 | 'version': 'kwIs2vdfTm93yEP8LG5aSnchN4BVEdVxbqQtF4XpPdkC', |
| 832 | }, |
| 833 | ], |
| 834 | 'condition': 'checkout_android', |
| 835 | 'dep_type': 'cipd', |
| 836 | }, |
| 837 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 838 | 'src/third_party/catapult': |
| 839 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 840 | |
| 841 | 'src/third_party/ced/src': |
Jinsuk Kim | 69fae80a | 2019-02-22 01:26:38 | [diff] [blame] | 842 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 843 | |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 844 | 'src/third_party/checkstyle': { |
| 845 | 'packages': [ |
| 846 | { |
| 847 | 'package': 'chromium/third_party/checkstyle', |
Eric Stevenson | dabee8e | 2019-09-12 22:28:45 | [diff] [blame] | 848 | 'version': 'UAf8iarsiPx9B6ClHuyeRNM6py76TUVdylyGLTmpb4IC', |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 849 | }, |
| 850 | ], |
Andrew Grieve | ee25848 | 2019-11-19 16:24:54 | [diff] [blame] | 851 | # Needed on Linux for use on chromium_presubmit. |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 852 | 'condition': 'checkout_android or checkout_linux', |
| 853 | 'dep_type': 'cipd', |
| 854 | }, |
| 855 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 856 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 857 | 'src/third_party/chromite': { |
chromium-autoroll | 0b6c547 | 2020-06-05 17:17:39 | [diff] [blame] | 858 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '1049ade3e12f40c07a8847036a60e12138058f78', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 859 | 'condition': 'checkout_linux', |
| 860 | }, |
| 861 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 862 | 'src/third_party/cld_3/src': |
Akihiro Ota | 1fb5ba9 | 2019-04-25 02:23:20 | [diff] [blame] | 863 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '06f695f1c8ee530104416aab5dcf2d6a1414a56a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 864 | |
| 865 | 'src/third_party/colorama/src': |
| 866 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 867 | |
| 868 | 'src/third_party/crc32c/src': |
Staphany Park | 5a0eb9a | 2019-03-02 01:39:31 | [diff] [blame] | 869 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 870 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 871 | # For Linux and Chromium OS. |
| 872 | 'src/third_party/cros_system_api': { |
Jesse Schettler | 54f8ed9 | 2020-06-01 18:16:56 | [diff] [blame] | 873 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + '70439a4af4be14da0243a33f9c51c0467fbeb6b3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 874 | 'condition': 'checkout_linux', |
| 875 | }, |
| 876 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 877 | 'src/third_party/depot_tools': |
chromium-autoroll | d5a03110 | 2020-06-09 20:15:52 | [diff] [blame] | 878 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '1dcaaa7aabb0573c4877621f3f534b82cf02e271', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 879 | |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 880 | 'src/third_party/devtools-frontend/src': |
| 881 | Var('chromium_git') + '/devtools/devtools-frontend' + '@' + Var('devtools_frontend_revision'), |
| 882 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 883 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 884 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 885 | |
| 886 | 'src/third_party/elfutils/src': { |
| 887 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 888 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 889 | }, |
| 890 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 891 | 'src/third_party/espresso': { |
| 892 | 'packages': [ |
| 893 | { |
| 894 | 'package': 'chromium/third_party/espresso', |
Andrew Grieve | fdb38e8 | 2020-06-09 14:50:26 | [diff] [blame] | 895 | 'version': 'y8fIfH8Leo2cPm7iGCYnBxZpwOlgLv8rm2mlcmJlvGsC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 896 | }, |
| 897 | ], |
| 898 | 'condition': 'checkout_android', |
| 899 | 'dep_type': 'cipd', |
| 900 | }, |
| 901 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 902 | 'src/third_party/ffmpeg': |
Dale Curtis | 4248a93 | 2020-05-19 00:18:02 | [diff] [blame] | 903 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'be66dc5fd0e3c53646107b2dc5d7594a869ebdc6', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 904 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 905 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 906 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 907 | |
| 908 | 'src/third_party/flatbuffers/src': |
Sky Malice | 9dd6045 | 2019-11-25 19:38:42 | [diff] [blame] | 909 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '136d75fa6580ef87d1b7cbc243e617f21149852e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 910 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 911 | # Used for embedded builds. CrOS & Linux use the system version. |
| 912 | 'src/third_party/fontconfig/src': { |
Tom Anderson | 9cc1fae | 2020-01-15 03:26:09 | [diff] [blame] | 913 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + '452be8125f0e2a18a7dfef469e05d19374d36307', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 914 | 'condition': 'checkout_linux', |
| 915 | }, |
| 916 | |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 917 | 'src/third_party/grpc/src': { |
Yuwei Huang | 58e95e2 | 2019-07-16 21:35:22 | [diff] [blame] | 918 | 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '74b981a6a3d9ba17f3acae1d72b9109325ef656d', |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 919 | }, |
| 920 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 921 | 'src/third_party/freetype/src': |
| 922 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 923 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 924 | 'src/third_party/harfbuzz-ng/src': |
| 925 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 926 | |
Joey Scarr | 28fc3009 | 2019-02-04 10:10:20 | [diff] [blame] | 927 | 'src/third_party/emoji-segmenter/src': |
Lei Zhang | b3ce3d1 | 2019-07-19 01:01:16 | [diff] [blame] | 928 | Var('chromium_git') + '/external/github.com/google/emoji-segmenter.git' + '@' + Var('emoji_segmenter_revision'), |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 929 | |
Hirokazu Honda | fa7af2bb | 2020-02-03 02:48:28 | [diff] [blame] | 930 | 'src/third_party/libgav1/src': |
Wan-Teh Chang | 5955af0 | 2020-05-29 20:04:37 | [diff] [blame] | 931 | Var('chromium_git') + '/codecs/libgav1.git' + '@' + 'bf190c43e5c7cc81751867c917a81bc2920be079', |
Hirokazu Honda | fa7af2bb | 2020-02-03 02:48:28 | [diff] [blame] | 932 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 933 | 'src/third_party/glslang/src': |
chromium-autoroll | 4e06b4a2 | 2020-06-09 18:23:54 | [diff] [blame] | 934 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + '68b2e15ee016487a28c4178a9d142186c58c8dd0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 935 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 936 | 'src/third_party/google_toolbox_for_mac/src': { |
| 937 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 938 | 'condition': 'checkout_ios or checkout_mac', |
| 939 | }, |
| 940 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 941 | 'src/third_party/google-truth': { |
| 942 | 'packages': [ |
| 943 | { |
| 944 | 'package': 'chromium/third_party/google-truth', |
Gang Wu | d2b9c11 | 2019-06-06 15:24:00 | [diff] [blame] | 945 | 'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC', |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [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/googletest/src': |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 953 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 954 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 955 | # GNU binutils assembler for x86-32. |
| 956 | 'src/third_party/gnu_binutils': { |
| 957 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 958 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 959 | }, |
| 960 | |
| 961 | 'src/third_party/gperf': { |
| 962 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 963 | 'condition': 'checkout_win', |
| 964 | }, |
| 965 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 966 | 'src/third_party/guava': { |
| 967 | 'packages': [ |
| 968 | { |
| 969 | 'package': 'chromium/third_party/guava', |
Ben Joyce | 27083f5 | 2020-05-13 00:44:03 | [diff] [blame] | 970 | 'version': 'y8Zx7cKTiOunLhOrfC4hOt5kDQrLJ_Rq7ISDmXkPdYsC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 971 | }, |
| 972 | ], |
| 973 | 'condition': 'checkout_android', |
| 974 | 'dep_type': 'cipd', |
| 975 | }, |
| 976 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 977 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 978 | '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] | 979 | 'condition': 'checkout_android', |
| 980 | }, |
| 981 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 982 | 'src/third_party/arcore-android-sdk/src': { |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 983 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '765ca36d1d03e8d97bcb4d48d407277c3b503f21', |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 984 | 'condition': 'checkout_android', |
| 985 | }, |
| 986 | |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 987 | 'src/third_party/arcore-android-sdk-client': { |
| 988 | 'packages': [ |
| 989 | { |
| 990 | 'package': 'chromium/third_party/arcore-android-sdk-client', |
| 991 | 'version': 'Ki3Nxeov-cyGeHGIxrhG1teX7zYstsUtg1k-SAQ8CpAC', |
| 992 | }, |
| 993 | ], |
| 994 | |
| 995 | 'condition': 'checkout_android', |
| 996 | 'dep_type': 'cipd', |
| 997 | }, |
| 998 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 999 | 'src/third_party/hamcrest': { |
| 1000 | 'packages': [ |
| 1001 | { |
| 1002 | 'package': 'chromium/third_party/hamcrest', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1003 | 'version': '37eccfc658fe79695d6abb6dd497463c4372032f', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1004 | }, |
| 1005 | ], |
| 1006 | 'condition': 'checkout_android', |
| 1007 | 'dep_type': 'cipd', |
| 1008 | }, |
| 1009 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1010 | 'src/third_party/hunspell_dictionaries': |
Guillaume Jenkins | 031c5e8 | 2020-04-01 15:51:31 | [diff] [blame] | 1011 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '6fdad5388130757e1efb58a14b8e7f9494625691', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1012 | |
| 1013 | 'src/third_party/icu': |
Frank Tang | 9ffbd27 | 2020-06-09 16:51:35 | [diff] [blame] | 1014 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '46f53dfc09c520b7c520a089ca473bb0ee29c07e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1015 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1016 | 'src/third_party/icu4j': { |
| 1017 | 'packages': [ |
| 1018 | { |
| 1019 | 'package': 'chromium/third_party/icu4j', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1020 | 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1021 | }, |
| 1022 | ], |
| 1023 | 'condition': 'checkout_android', |
| 1024 | 'dep_type': 'cipd', |
| 1025 | }, |
| 1026 | |
Ben Joyce | dde37c2 | 2019-04-12 19:36:19 | [diff] [blame] | 1027 | 'src/third_party/jacoco': { |
| 1028 | 'packages': [ |
| 1029 | { |
| 1030 | 'package': 'chromium/third_party/jacoco', |
| 1031 | 'version': 'O8mNUqIbFxvOcBsSNfbvpdUFvY4nfrPY0QA2kHoO2pQC', |
| 1032 | }, |
| 1033 | ], |
| 1034 | 'condition': 'checkout_android', |
| 1035 | 'dep_type': 'cipd', |
| 1036 | }, |
| 1037 | |
Tibor Goldschwendt | 38cc208 | 2019-06-03 21:59:28 | [diff] [blame] | 1038 | 'src/third_party/javalang/src': { |
| 1039 | 'url': Var('chromium_git') + '/external/github.com/c2nes/javalang.git' + '@' + 'f98ffcb31d1daa57fbe5bd6def8ad7c3126d8242', |
| 1040 | 'condition': 'checkout_android', |
| 1041 | }, |
| 1042 | |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1043 | 'src/third_party/jdk': { |
| 1044 | 'packages': [ |
| 1045 | { |
| 1046 | 'package': 'chromium/third_party/jdk', |
Andrew Grieve | 872d4a4a | 2019-10-28 23:07:11 | [diff] [blame] | 1047 | 'version': 'PfRSnxe8Od6WU4zBXomq-zsgcJgWmm3z4gMQNB-r2QcC', |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1048 | }, |
Peter Wen | ca01c25 | 2019-10-29 01:41:16 | [diff] [blame] | 1049 | { |
| 1050 | 'package': 'chromium/third_party/jdk/extras', |
| 1051 | 'version': 'fkhuOQ3r-zKtWEdKplpo6k0vKkjl-LY_rJTmtzFCQN4C', |
| 1052 | }, |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1053 | ], |
Andrew Grieve | ee25848 | 2019-11-19 16:24:54 | [diff] [blame] | 1054 | # Needed on Linux for use on chromium_presubmit (for checkstyle). |
| 1055 | 'condition': 'checkout_android or checkout_linux', |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1056 | 'dep_type': 'cipd', |
| 1057 | }, |
| 1058 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1059 | 'src/third_party/jsoncpp/source': |
Jordan Bayles | d4a7c4e | 2019-07-12 01:09:04 | [diff] [blame] | 1060 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' |
| 1061 | + '@' + '645250b6690785be60ab6780ce4b58698d884d11', # release 1.9.1 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1062 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1063 | 'src/third_party/junit/src': { |
| 1064 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 1065 | 'condition': 'checkout_android', |
| 1066 | }, |
| 1067 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1068 | 'src/third_party/leveldatabase/src': |
Victor Costan | 07c6977 | 2020-05-12 00:27:40 | [diff] [blame] | 1069 | Var('chromium_git') + '/external/leveldb.git' + '@' + '5bd5f0f67a5eb0ed74c16b3ae847ec4e5bc3e412', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1070 | |
| 1071 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 1072 | 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] | 1073 | |
| 1074 | 'src/third_party/libaddressinput/src': |
sebsg | d592caf | 2020-01-23 17:55:15 | [diff] [blame] | 1075 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '390dfc08e3806a2125d08d4d8d034a24d587d77a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1076 | |
Johann | 987d153 | 2018-11-19 22:07:27 | [diff] [blame] | 1077 | 'src/third_party/libaom/source/libaom': |
Jerome Jiang | c4cd36210 | 2020-06-02 21:05:24 | [diff] [blame] | 1078 | Var('aomedia_git') + '/aom.git' + '@' + '2aa13c436e4dc6d78e05d13e6be73a23b3810bd3', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 1079 | |
Wan-Teh Chang | 75fd532 | 2020-04-08 01:32:18 | [diff] [blame] | 1080 | 'src/third_party/libavif/src': |
| 1081 | Var('chromium_git') + '/external/github.com/AOMediaCodec/libavif.git' + '@' + Var('libavif_revision'), |
| 1082 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1083 | # Userspace interface to kernel DRM services. |
| 1084 | 'src/third_party/libdrm/src': { |
Gurchetan Singh | db0a74e | 2020-03-11 21:46:20 | [diff] [blame] | 1085 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0190f49a139e7069d7cad6a6890832831da1aa8b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1086 | 'condition': 'checkout_linux', |
| 1087 | }, |
| 1088 | |
Ben Wagner | 3743d539 | 2019-09-26 19:20:36 | [diff] [blame] | 1089 | 'src/third_party/expat/src': |
| 1090 | Var('chromium_git') + '/external/github.com/libexpat/libexpat.git' + '@' + Var('libexpat_revision'), |
| 1091 | |
Piotr Pawliczek | 2ebb8aff | 2019-08-27 17:16:34 | [diff] [blame] | 1092 | # The library for IPP protocol (Chrome OS). |
| 1093 | 'src/third_party/libipp/libipp': { |
| 1094 | 'url': Var('chromium_git') + '/chromiumos/platform2/libipp.git' + '@' + '6c45a4f3a05cb5dd700414fe4d94cf685159d3ce', |
| 1095 | 'condition': 'checkout_linux', |
| 1096 | }, |
| 1097 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1098 | 'src/third_party/libjpeg_turbo': |
Chris Blume | 69dd5dd | 2020-03-30 20:39:36 | [diff] [blame] | 1099 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7e3ad79800a7945fb37173149842b494ab8982b2', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1100 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1101 | 'src/third_party/liblouis/src': { |
David Tseng | 26f7fd9 | 2019-12-18 18:07:22 | [diff] [blame] | 1102 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '03d7d72d983d47c17f7de95bbeae89fe33e41943', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1103 | 'condition': 'checkout_linux', |
| 1104 | }, |
| 1105 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1106 | 'src/third_party/libphonenumber/dist': |
Vadym Doroshenko | 88cd7a7 | 2019-09-04 21:08:01 | [diff] [blame] | 1107 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + '68eba9d6ee8b11fb58ece36b6c46d07965d7f7ff', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1108 | |
| 1109 | 'src/third_party/libprotobuf-mutator/src': |
| 1110 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 1111 | |
| 1112 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 1113 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1114 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1115 | # Android Explicit Synchronization. |
| 1116 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 1117 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1118 | 'condition': 'checkout_linux', |
| 1119 | }, |
| 1120 | |
Charlie Andrews | 6723c0e3c | 2019-10-31 15:45:24 | [diff] [blame] | 1121 | 'src/third_party/libunwindstack': { |
Mike Wittman | 7829cbd | 2020-05-27 17:28:00 | [diff] [blame] | 1122 | 'url': Var('chromium_git') + '/chromium/src/third_party/libunwindstack.git' + '@' + '046920fc491aba67c6f6a750b4be7b835cff4e5b', |
Charlie Andrews | 6723c0e3c | 2019-10-31 15:45:24 | [diff] [blame] | 1123 | 'condition': 'checkout_android', |
| 1124 | }, |
| 1125 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1126 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | 3cfb6dd9 | 2020-06-03 21:10:21 | [diff] [blame] | 1127 | Var('chromium_git') + '/webm/libvpx.git' + '@' + 'c1765573149e2c0fe2acabc224c0f9085b9e7f2b', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1128 | |
| 1129 | 'src/third_party/libwebm/source': |
James Zern | 62ef4ae | 2019-02-21 21:17:03 | [diff] [blame] | 1130 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1131 | |
| 1132 | 'src/third_party/libyuv': |
Dale Curtis | e87da1b | 2019-11-13 03:20:25 | [diff] [blame] | 1133 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6afd9becdf58822b1da6770598d8597c583ccfad', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1134 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 1135 | 'src/third_party/lighttpd': { |
| 1136 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 1137 | 'condition': 'checkout_mac or checkout_win', |
| 1138 | }, |
| 1139 | |
| 1140 | 'src/third_party/lss': { |
| 1141 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 1142 | 'condition': 'checkout_android or checkout_linux', |
| 1143 | }, |
| 1144 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1145 | 'src/third_party/material_design_icons/src': { |
| 1146 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 1147 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 1148 | 'condition': 'checkout_ios', |
| 1149 | }, |
| 1150 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1151 | # GNU binutils assembler for x86-64. |
| 1152 | 'src/third_party/mingw-w64/mingw/bin': { |
| 1153 | '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] | 1154 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1155 | }, |
| 1156 | |
| 1157 | # Graphics buffer allocator for Chrome OS. |
| 1158 | 'src/third_party/minigbm/src': { |
Daniel Nicoara | 1b4f6db | 2020-03-27 18:07:42 | [diff] [blame] | 1159 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'bc4f023bfcc51cf9dcfcfec5bf4177b2e607dd68', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1160 | 'condition': 'checkout_linux', |
| 1161 | }, |
| 1162 | |
| 1163 | # Minizip library. Used on Chrome OS. |
| 1164 | 'src/third_party/minizip/src': { |
Anand K. Mistry | bdd979e4 | 2018-12-17 04:38:59 | [diff] [blame] | 1165 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1166 | 'condition': 'checkout_linux', |
| 1167 | }, |
| 1168 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1169 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 1170 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1171 | 'condition': 'checkout_android', |
| 1172 | }, |
| 1173 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1174 | # Binaries for nacl sdk. |
| 1175 | 'src/third_party/nacl_sdk_binaries': { |
| 1176 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1177 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1178 | }, |
| 1179 | |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1180 | 'src/third_party/nasm': { |
| 1181 | 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
Dale Curtis | 47858c5e | 2020-04-14 22:18:08 | [diff] [blame] | 1182 | '4fa54ca5f7fc3a15a8c78ac94688e64d3e4e4fa1' |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1183 | }, |
| 1184 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1185 | 'src/third_party/netty-tcnative/src': { |
| 1186 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 1187 | 'condition': 'checkout_android', |
| 1188 | }, |
| 1189 | |
| 1190 | 'src/third_party/netty4/src': { |
| 1191 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 1192 | 'condition': 'checkout_android', |
| 1193 | }, |
| 1194 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1195 | 'src/third_party/objenesis': { |
| 1196 | 'packages': [ |
| 1197 | { |
| 1198 | 'package': 'chromium/third_party/objenesis', |
Yun Liu | dd4e566 | 2019-12-03 17:17:41 | [diff] [blame] | 1199 | 'version': 'tknDblENYi8IaJYyD6tUahUyHYZlzJ_Y74_QZSz4DpIC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1200 | }, |
| 1201 | ], |
| 1202 | 'condition': 'checkout_android', |
| 1203 | 'dep_type': 'cipd', |
| 1204 | }, |
| 1205 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1206 | 'src/third_party/openh264/src': |
Dale Curtis | 7b48f81 | 2020-04-23 17:46:18 | [diff] [blame] | 1207 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'a5473711f3e20c6bd1c33d81b6c7b9a0618aa18f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1208 | |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1209 | 'src/third_party/openscreen/src': |
chromium-autoroll | 05bccc07 | 2020-06-09 20:46:09 | [diff] [blame] | 1210 | Var('chromium_git') + '/openscreen' + '@' + 'f9b11251a19b8fd0d1f7c1455591e40bf7b83437', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1211 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1212 | 'src/third_party/openxr/src': { |
Kevin Qin | 6bf75c7 | 2020-01-07 19:37:33 | [diff] [blame] | 1213 | 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '9e97b73e7dd2bfc07745489d728f6a36665c648f', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1214 | 'condition': 'checkout_openxr', |
| 1215 | }, |
| 1216 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1217 | 'src/third_party/pdfium': |
| 1218 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 1219 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1220 | # Parses Windows PE/COFF executable format. |
| 1221 | 'src/third_party/pefile': { |
| 1222 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1223 | 'condition': 'checkout_win', |
| 1224 | }, |
| 1225 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1226 | 'src/third_party/perfetto': |
chromium-autoroll | 044b5d6 | 2020-06-09 23:19:03 | [diff] [blame] | 1227 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '2911cba7a7a24a61f451e177e0dee7f43d9f4408', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1228 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1229 | 'src/third_party/perl': { |
Robert Ma | 3deb10c | 2019-06-05 15:23:29 | [diff] [blame] | 1230 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1231 | 'condition': 'checkout_win', |
| 1232 | }, |
| 1233 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1234 | 'src/third_party/proguard': { |
| 1235 | 'packages': [ |
| 1236 | { |
| 1237 | 'package': 'chromium/third_party/proguard', |
Andrew Grieve | 02aeb6b2 | 2020-03-18 20:20:21 | [diff] [blame] | 1238 | 'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC', |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1239 | }, |
| 1240 | ], |
| 1241 | 'condition': 'checkout_android', |
| 1242 | 'dep_type': 'cipd', |
| 1243 | }, |
| 1244 | |
Mohamed Heikal | 5c48859 | 2018-11-26 23:32:15 | [diff] [blame] | 1245 | 'src/third_party/protoc_javalite': { |
| 1246 | 'packages': [ |
| 1247 | { |
| 1248 | 'package': 'chromium/third_party/protoc_javalite', |
| 1249 | 'version': 'version:3.0.0-cr1', |
| 1250 | }, |
| 1251 | ], |
| 1252 | 'condition': 'checkout_android', |
| 1253 | 'dep_type': 'cipd', |
| 1254 | }, |
| 1255 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1256 | # Dependency of chromite.git and skia. |
| 1257 | 'src/third_party/pyelftools': { |
| 1258 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1259 | 'condition': 'checkout_linux', |
| 1260 | }, |
| 1261 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1262 | 'src/third_party/quic_trace/src': |
Ian Swett | 35a0878 | 2020-04-15 17:48:05 | [diff] [blame] | 1263 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + 'a3f901c6a99e786ed0fa58a89927f630af17a90c', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1264 | |
Keita Suzuki | fa3a18069 | 2020-03-05 03:53:53 | [diff] [blame] | 1265 | 'src/third_party/pywebsocket3/src': |
| 1266 | Var('chromium_git') + '/external/github.com/GoogleChromeLabs/pywebsocket3.git' + '@' + '89c9228434100e4dabb19f61d0d4f55625940638', |
| 1267 | |
Stephen Roe | 3c9f585 | 2019-11-13 17:25:43 | [diff] [blame] | 1268 | 'src/third_party/qemu-linux-arm64': { |
| 1269 | 'packages': [ |
| 1270 | { |
| 1271 | 'package': 'fuchsia/qemu/linux-arm64', |
| 1272 | 'version': 'b1b61a39e3ab0935cd030f27e01740578b04b967' |
| 1273 | }, |
| 1274 | ], |
| 1275 | 'condition': 'host_os == "linux" and (checkout_fuchsia and checkout_fuchsia_for_arm64_host)', |
| 1276 | 'dep_type': 'cipd', |
| 1277 | }, |
| 1278 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1279 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1280 | 'packages': [ |
| 1281 | { |
| 1282 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1283 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1284 | }, |
| 1285 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1286 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1287 | 'dep_type': 'cipd', |
| 1288 | }, |
| 1289 | |
| 1290 | 'src/third_party/qemu-mac-x64': { |
| 1291 | 'packages': [ |
| 1292 | { |
| 1293 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1294 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1295 | }, |
| 1296 | ], |
| 1297 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1298 | 'dep_type': 'cipd', |
| 1299 | }, |
| 1300 | |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1301 | 'src/third_party/aemu-linux-x64': { |
| 1302 | 'packages': [ |
| 1303 | { |
| 1304 | 'package': 'fuchsia/third_party/aemu/linux-amd64', |
chromium-autoroll | 560612c | 2020-06-09 09:30:25 | [diff] [blame] | 1305 | 'version': 'GMB48BSk7tUABUOq1za-08Safc5r3VfS3614ZsTrWFQC' |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1306 | }, |
| 1307 | ], |
Chong Gu | 7d2dd6e | 2020-02-01 03:27:25 | [diff] [blame] | 1308 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1309 | 'dep_type': 'cipd', |
| 1310 | }, |
| 1311 | |
| 1312 | 'src/third_party/aemu-mac-x64': { |
| 1313 | 'packages': [ |
| 1314 | { |
| 1315 | 'package': 'fuchsia/third_party/aemu/mac-amd64', |
Chong Gu | 4199cbde | 2020-03-05 06:07:19 | [diff] [blame] | 1316 | 'version': 'guAtTBQ1SKIjr06srbTOjNWiYxrM4nK1AbfeQo1gBmQC' |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1317 | }, |
| 1318 | ], |
Chong Gu | 7d2dd6e | 2020-02-01 03:27:25 | [diff] [blame] | 1319 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1320 | 'dep_type': 'cipd', |
| 1321 | }, |
| 1322 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1323 | 'src/third_party/re2/src': |
Paul Wankadia | b0987ed5 | 2020-05-28 16:29:28 | [diff] [blame] | 1324 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'aecba11114cf1fac5497aeb844b6966106de3eb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1325 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1326 | 'src/third_party/r8': { |
| 1327 | 'packages': [ |
| 1328 | { |
| 1329 | 'package': 'chromium/third_party/r8', |
Sam Maier | 5387352 | 2020-06-09 21:19:52 | [diff] [blame] | 1330 | 'version': 'B467c9t23JiW_6XGqhvHvtEKWSkrPS2xG_gho_gbAI4C', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1331 | }, |
| 1332 | ], |
| 1333 | 'condition': 'checkout_android', |
| 1334 | 'dep_type': 'cipd', |
| 1335 | }, |
| 1336 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1337 | 'src/third_party/requests/src': { |
| 1338 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1339 | 'condition': 'checkout_android', |
| 1340 | }, |
| 1341 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1342 | 'src/third_party/robolectric': { |
| 1343 | 'packages': [ |
| 1344 | { |
| 1345 | 'package': 'chromium/third_party/robolectric', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 1346 | 'version': 'iC6RDM5EH3GEAzR-1shW_Mg0FeeNE5shq1okkFfuuNQC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1347 | }, |
| 1348 | ], |
| 1349 | 'condition': 'checkout_android', |
| 1350 | 'dep_type': 'cipd', |
| 1351 | }, |
| 1352 | |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1353 | 'src/third_party/androidx': { |
| 1354 | 'packages': [ |
| 1355 | { |
| 1356 | 'package': 'chromium/third_party/androidx', |
| 1357 | 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| 1358 | }, |
| 1359 | ], |
| 1360 | 'condition': 'checkout_android', |
| 1361 | 'dep_type': 'cipd', |
| 1362 | }, |
| 1363 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1364 | 'src/third_party/skia': |
| 1365 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1366 | |
| 1367 | 'src/third_party/smhasher/src': |
| 1368 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1369 | |
| 1370 | 'src/third_party/snappy/src': |
Victor Costan | acd0b2c5 | 2020-06-02 19:53:30 | [diff] [blame] | 1371 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'f16eda3466633b88d0a55199deb00aa5429c6219', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1372 | |
Chris Mumford | 591102e | 2020-03-16 16:48:55 | [diff] [blame] | 1373 | 'src/third_party/sqlite/src': |
Darwin Huang | 85d0163 | 2020-05-30 03:34:51 | [diff] [blame] | 1374 | Var('chromium_git') + '/chromium/deps/sqlite.git' + '@' + 'b5399f70d4778fa2f0f0ada1bb5910e14c096be9', |
Chris Mumford | 591102e | 2020-03-16 16:48:55 | [diff] [blame] | 1375 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1376 | 'src/third_party/sqlite4java': { |
| 1377 | 'packages': [ |
| 1378 | { |
| 1379 | 'package': 'chromium/third_party/sqlite4java', |
Xing Liu | 37d0b66 | 2020-01-11 04:24:49 | [diff] [blame] | 1380 | 'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1381 | }, |
| 1382 | ], |
| 1383 | 'condition': 'checkout_android', |
| 1384 | 'dep_type': 'cipd', |
| 1385 | }, |
| 1386 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1387 | 'src/third_party/swiftshader': |
| 1388 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1389 | |
Peter Wen | 49675e17 | 2020-03-16 16:10:11 | [diff] [blame] | 1390 | 'src/third_party/turbine': { |
| 1391 | 'packages': [ |
| 1392 | { |
| 1393 | 'package': 'chromium/third_party/turbine', |
| 1394 | 'version': '3UJ600difG3ThRhtYrN9AfZ5kh8wCYtBiii1-NMlCrMC', |
| 1395 | }, |
| 1396 | ], |
| 1397 | 'condition': 'checkout_android', |
| 1398 | 'dep_type': 'cipd', |
| 1399 | }, |
| 1400 | |
| 1401 | 'src/third_party/turbine/src': { |
| 1402 | 'url': Var('chromium_git') + '/external/github.com/google/turbine.git' + '@' + '95f6fb6f1e962e8b6ec672905b0b04233f002dc2', |
| 1403 | 'condition': 'checkout_android', |
| 1404 | }, |
| 1405 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1406 | 'src/third_party/ub-uiautomator/lib': { |
| 1407 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1408 | 'condition': 'checkout_android', |
| 1409 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1410 | |
| 1411 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 28f5c1c | 2020-04-28 22:11:15 | [diff] [blame] | 1412 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'a8c51df76caae94254b1e59999405f739467490e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1413 | |
Peng Huang | 91df269 | 2020-05-05 18:59:53 | [diff] [blame] | 1414 | 'src/third_party/vulkan_memory_allocator': |
Jamie Madill | 75c0e63 | 2020-06-04 17:25:10 | [diff] [blame] | 1415 | Var('chromium_git') + '/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git' + '@' + '431d6e57284aeb08118ff428dfbd51c94342faa1', |
Peng Huang | 3b77c37c | 2020-05-02 19:14:21 | [diff] [blame] | 1416 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1417 | # Display server protocol for Linux. |
| 1418 | 'src/third_party/wayland/src': { |
Kenny Levinsen | b581b3e | 2019-12-03 01:32:36 | [diff] [blame] | 1419 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + 'e091839dd08354289e501a47219e0c7a6472dff3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1420 | 'condition': 'checkout_linux', |
| 1421 | }, |
| 1422 | |
| 1423 | # Wayland protocols that add functionality not available in the core protocol. |
| 1424 | 'src/third_party/wayland-protocols/src': { |
Fergus Dall | dd9c4fdc | 2020-06-10 00:35:32 | [diff] [blame^] | 1425 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '684cd23ae31fafb9eda2a0cd15edb4e96de92259', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1426 | 'condition': 'checkout_linux', |
| 1427 | }, |
| 1428 | |
| 1429 | # Wireless Display Software. Used on Chrome OS. |
| 1430 | 'src/third_party/wds/src': { |
| 1431 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1432 | 'condition': 'checkout_linux', |
| 1433 | }, |
| 1434 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1435 | 'src/third_party/webdriver/pylib': |
Aaron Gable | 5a63017 | 2019-04-30 20:59:01 | [diff] [blame] | 1436 | Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'd0045ec570c1a77612db35d1e92f05e1d27b4d53', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1437 | |
| 1438 | 'src/third_party/webgl/src': |
shrekshao | b87515b | 2020-06-09 21:50:57 | [diff] [blame] | 1439 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'd0fcf3daa5f98402f63e0e99a48fc60a4be18cf1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1440 | |
Kai Ninomiya | 1389888 | 2020-01-17 20:41:52 | [diff] [blame] | 1441 | 'src/third_party/webgpu-cts/src': |
Kai Ninomiya | c1937e5 | 2020-05-20 17:32:47 | [diff] [blame] | 1442 | Var('chromium_git') + '/external/github.com/gpuweb/cts.git' + '@' + '550dfb76f2b4a363f46c02691c3d4480aae28ed1', |
Kai Ninomiya | 1389888 | 2020-01-17 20:41:52 | [diff] [blame] | 1443 | |
Kai Ninomiya | c7138f9 | 2020-03-31 18:59:57 | [diff] [blame] | 1444 | 'src/third_party/blink/web_tests/wpt_internal/webgpu/third_party/glslang_js': { |
| 1445 | 'packages': [ |
| 1446 | { |
| 1447 | 'package': 'chromium/third_party/glslang_js', |
Kai Ninomiya | ba77e9c | 2020-04-13 18:51:43 | [diff] [blame] | 1448 | 'version': 'Zka0-f53_HEAZ1bpsxr9BSi7P51-4bzYwSMg0RMKX1AC', |
Kai Ninomiya | c7138f9 | 2020-03-31 18:59:57 | [diff] [blame] | 1449 | }, |
| 1450 | ], |
| 1451 | 'dep_type': 'cipd', |
| 1452 | }, |
| 1453 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1454 | 'src/third_party/webrtc': |
chromium-autoroll | 8788eea | 2020-06-09 20:26:01 | [diff] [blame] | 1455 | Var('webrtc_git') + '/src.git' + '@' + '0c3062efcb3b001bec0dfacbcaa15e5b73c21a64', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1456 | |
Nigel Tao | 3aa7214 | 2019-12-03 22:05:41 | [diff] [blame] | 1457 | 'src/third_party/libgifcodec': |
| 1458 | Var('skia_git') + '/libgifcodec' + '@'+ Var('libgifcodec_revision'), |
| 1459 | |
Nigel Tao | b517eb891 | 2019-10-23 03:36:24 | [diff] [blame] | 1460 | # Wuffs' canonical repository is at github.com/google/wuffs, but we use |
| 1461 | # Skia's mirror of Wuffs, the same as in upstream Skia's DEPS file. |
| 1462 | 'src/third_party/wuffs/src': |
| 1463 | Var('skia_git') + '/external/github.com/google/wuffs.git' + '@' + Var('wuffs_revision'), |
| 1464 | |
sbalikondwar | 5949a80 | 2020-02-13 16:28:59 | [diff] [blame] | 1465 | 'src/third_party/weston/src': { |
| 1466 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/weston.git' + '@' + 'db905f467169f9f131c5ddc6038296f866d5daeb', |
| 1467 | 'condition': 'checkout_linux', |
| 1468 | }, |
| 1469 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1470 | 'src/third_party/xdg-utils': { |
| 1471 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1472 | 'condition': 'checkout_linux', |
| 1473 | }, |
| 1474 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1475 | 'src/third_party/xstream': { |
| 1476 | 'packages': [ |
| 1477 | { |
| 1478 | 'package': 'chromium/third_party/xstream', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1479 | 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1480 | }, |
| 1481 | ], |
| 1482 | 'condition': 'checkout_android', |
| 1483 | 'dep_type': 'cipd', |
| 1484 | }, |
| 1485 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1486 | 'src/tools/page_cycler/acid3': |
| 1487 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1488 | |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1489 | 'src/tools/skia_goldctl/linux': { |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1490 | 'packages': [ |
| 1491 | { |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1492 | 'package': 'skia/tools/goldctl/linux-amd64', |
Brian Sheedy | 072684d | 2020-05-28 23:46:57 | [diff] [blame] | 1493 | 'version': 'git_revision:03ea4eb574acd232e223a6b13d15ebfb61f1c0d8', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1494 | }, |
| 1495 | ], |
| 1496 | 'dep_type': 'cipd', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1497 | 'condition': 'checkout_linux', |
| 1498 | }, |
| 1499 | 'src/tools/skia_goldctl/win': { |
| 1500 | 'packages': [ |
| 1501 | { |
| 1502 | 'package': 'skia/tools/goldctl/windows-amd64', |
Brian Sheedy | 072684d | 2020-05-28 23:46:57 | [diff] [blame] | 1503 | 'version': 'git_revision:03ea4eb574acd232e223a6b13d15ebfb61f1c0d8', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1504 | }, |
| 1505 | ], |
| 1506 | 'dep_type': 'cipd', |
| 1507 | 'condition': 'checkout_win', |
| 1508 | }, |
| 1509 | 'src/tools/skia_goldctl/mac': { |
| 1510 | 'packages': [ |
| 1511 | { |
| 1512 | 'package': 'skia/tools/goldctl/mac-amd64', |
Brian Sheedy | 072684d | 2020-05-28 23:46:57 | [diff] [blame] | 1513 | 'version': 'git_revision:03ea4eb574acd232e223a6b13d15ebfb61f1c0d8', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1514 | }, |
| 1515 | ], |
| 1516 | 'dep_type': 'cipd', |
| 1517 | 'condition': 'checkout_mac', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1518 | }, |
| 1519 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1520 | 'src/tools/swarming_client': |
| 1521 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1522 | |
| 1523 | 'src/v8': |
| 1524 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1525 | |
| 1526 | 'src-internal': { |
chromium-internal-autoroll | cbc261a | 2020-06-10 00:13:31 | [diff] [blame] | 1527 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@2e14d9f0c8d0b4d637c8b96360530452815d4666', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1528 | 'condition': 'checkout_src_internal', |
| 1529 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1530 | |
Jose Magana | 5dd8c42f | 2020-05-14 00:40:21 | [diff] [blame] | 1531 | 'src/chromeos/components/help_app_ui/resources/prod': { |
| 1532 | 'packages': [ |
| 1533 | { |
| 1534 | 'package': 'chromeos_internal/apps/help_app/app', |
Zufeng Wang | c2d15592 | 2020-06-05 09:05:49 | [diff] [blame] | 1535 | 'version': 'zqEjsRuI2qX11reJI5f9bE5X3iD6CtglpDcv2Cugj3cC', |
Jose Magana | 5dd8c42f | 2020-05-14 00:40:21 | [diff] [blame] | 1536 | }, |
| 1537 | ], |
| 1538 | 'condition': 'checkout_chromeos and checkout_src_internal', |
| 1539 | 'dep_type': 'cipd', |
| 1540 | }, |
| 1541 | |
Jose Magana | d34f170 | 2020-06-09 13:33:00 | [diff] [blame] | 1542 | 'src/chromeos/components/media_app_ui/resources/prod': { |
| 1543 | 'packages': [ |
| 1544 | { |
| 1545 | 'package': 'chromeos_internal/apps/media_app/app', |
| 1546 | 'version': 'F-avF4Ri2hix7udnvUw4Kpy8yj3WwML3J-8znYT-jvYC', |
| 1547 | }, |
| 1548 | ], |
| 1549 | 'condition': 'checkout_chromeos and checkout_src_internal', |
| 1550 | 'dep_type': 'cipd', |
| 1551 | }, |
| 1552 | |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1553 | 'src/third_party/google_android_play_core': { |
| 1554 | 'packages': [ |
| 1555 | { |
| 1556 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
Peter Wen | 5fe1f7d | 2020-03-30 21:28:32 | [diff] [blame] | 1557 | 'version': 'ojrkXUE6tjG8FYmoLfCD3YdOxTyl2BXMdmk7Fb6cS5MC', |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1558 | }, |
| 1559 | ], |
| 1560 | 'condition': 'checkout_android', |
| 1561 | 'dep_type': 'cipd', |
| 1562 | }, |
| 1563 | |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 1564 | 'src/third_party/android_prebuilts/build_tools': { |
| 1565 | 'url': Var('android_git') + '/platform/prebuilts/build-tools.git' + '@' + '5794e96eb8bae47bb48feee915d99583573b3887', |
| 1566 | 'condition': 'checkout_android_prebuilts_build_tools', |
| 1567 | }, |
| 1568 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1569 | # === ANDROID_DEPS Generated Code Start === |
Sam Maier | beef998 | 2020-01-06 17:49:10 | [diff] [blame] | 1570 | # Generated by //third_party/android_deps/fetch_all.py |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1571 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1572 | 'packages': [ |
| 1573 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1574 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1575 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1576 | }, |
| 1577 | ], |
| 1578 | 'condition': 'checkout_android', |
| 1579 | 'dep_type': 'cipd', |
| 1580 | }, |
| 1581 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1582 | 'src/third_party/android_deps/libs/android_arch_core_runtime': { |
| 1583 | 'packages': [ |
| 1584 | { |
| 1585 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_runtime', |
| 1586 | 'version': 'version:1.1.1-cr0', |
| 1587 | }, |
| 1588 | ], |
| 1589 | 'condition': 'checkout_android', |
| 1590 | 'dep_type': 'cipd', |
| 1591 | }, |
| 1592 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1593 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1594 | 'packages': [ |
| 1595 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1596 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1597 | 'version': 'version:1.1.1-cr0', |
| 1598 | }, |
| 1599 | ], |
| 1600 | 'condition': 'checkout_android', |
| 1601 | 'dep_type': 'cipd', |
| 1602 | }, |
| 1603 | |
| 1604 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common_java8': { |
| 1605 | 'packages': [ |
| 1606 | { |
| 1607 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8', |
| 1608 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1609 | }, |
| 1610 | ], |
| 1611 | 'condition': 'checkout_android', |
| 1612 | 'dep_type': 'cipd', |
| 1613 | }, |
| 1614 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1615 | 'src/third_party/android_deps/libs/android_arch_lifecycle_livedata': { |
| 1616 | 'packages': [ |
| 1617 | { |
| 1618 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata', |
| 1619 | 'version': 'version:1.1.1-cr0', |
| 1620 | }, |
| 1621 | ], |
| 1622 | 'condition': 'checkout_android', |
| 1623 | 'dep_type': 'cipd', |
| 1624 | }, |
| 1625 | |
| 1626 | 'src/third_party/android_deps/libs/android_arch_lifecycle_livedata_core': { |
| 1627 | 'packages': [ |
| 1628 | { |
| 1629 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata_core', |
| 1630 | 'version': 'version:1.1.1-cr0', |
| 1631 | }, |
| 1632 | ], |
| 1633 | 'condition': 'checkout_android', |
| 1634 | 'dep_type': 'cipd', |
| 1635 | }, |
| 1636 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1637 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1638 | 'packages': [ |
| 1639 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1640 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1641 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1642 | }, |
| 1643 | ], |
| 1644 | 'condition': 'checkout_android', |
| 1645 | 'dep_type': 'cipd', |
| 1646 | }, |
| 1647 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1648 | 'src/third_party/android_deps/libs/android_arch_lifecycle_viewmodel': { |
| 1649 | 'packages': [ |
| 1650 | { |
| 1651 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_viewmodel', |
| 1652 | 'version': 'version:1.1.1-cr0', |
| 1653 | }, |
| 1654 | ], |
| 1655 | 'condition': 'checkout_android', |
| 1656 | 'dep_type': 'cipd', |
| 1657 | }, |
| 1658 | |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1659 | 'src/third_party/android_deps/libs/androidx_activity_activity': { |
| 1660 | 'packages': [ |
| 1661 | { |
| 1662 | 'package': 'chromium/third_party/android_deps/libs/androidx_activity_activity', |
| 1663 | 'version': 'version:1.0.0-cr0', |
| 1664 | }, |
| 1665 | ], |
| 1666 | 'condition': 'checkout_android', |
| 1667 | 'dep_type': 'cipd', |
| 1668 | }, |
| 1669 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1670 | 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 1671 | 'packages': [ |
| 1672 | { |
| 1673 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 1674 | 'version': 'version:1.1.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1675 | }, |
| 1676 | ], |
| 1677 | 'condition': 'checkout_android', |
| 1678 | 'dep_type': 'cipd', |
| 1679 | }, |
| 1680 | |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 1681 | 'src/third_party/android_deps/libs/androidx_annotation_annotation_experimental': { |
| 1682 | 'packages': [ |
| 1683 | { |
| 1684 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation_experimental', |
| 1685 | 'version': 'version:1.0.0-cr0', |
| 1686 | }, |
| 1687 | ], |
| 1688 | 'condition': 'checkout_android', |
| 1689 | 'dep_type': 'cipd', |
| 1690 | }, |
| 1691 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1692 | 'src/third_party/android_deps/libs/androidx_appcompat_appcompat': { |
| 1693 | 'packages': [ |
| 1694 | { |
| 1695 | 'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1696 | 'version': 'version:1.2.0-beta01-cr0', |
| 1697 | }, |
| 1698 | ], |
| 1699 | 'condition': 'checkout_android', |
| 1700 | 'dep_type': 'cipd', |
| 1701 | }, |
| 1702 | |
| 1703 | 'src/third_party/android_deps/libs/androidx_appcompat_appcompat_resources': { |
| 1704 | 'packages': [ |
| 1705 | { |
| 1706 | 'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat_resources', |
| 1707 | 'version': 'version:1.2.0-beta01-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1708 | }, |
| 1709 | ], |
| 1710 | 'condition': 'checkout_android', |
| 1711 | 'dep_type': 'cipd', |
| 1712 | }, |
| 1713 | |
| 1714 | 'src/third_party/android_deps/libs/androidx_arch_core_core_common': { |
| 1715 | 'packages': [ |
| 1716 | { |
| 1717 | 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_common', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1718 | 'version': 'version:2.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1719 | }, |
| 1720 | ], |
| 1721 | 'condition': 'checkout_android', |
| 1722 | 'dep_type': 'cipd', |
| 1723 | }, |
| 1724 | |
| 1725 | 'src/third_party/android_deps/libs/androidx_arch_core_core_runtime': { |
| 1726 | 'packages': [ |
| 1727 | { |
| 1728 | 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_runtime', |
| 1729 | 'version': 'version:2.0.0-cr0', |
| 1730 | }, |
| 1731 | ], |
| 1732 | 'condition': 'checkout_android', |
| 1733 | 'dep_type': 'cipd', |
| 1734 | }, |
| 1735 | |
| 1736 | 'src/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater': { |
| 1737 | 'packages': [ |
| 1738 | { |
| 1739 | 'package': 'chromium/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater', |
| 1740 | 'version': 'version:1.0.0-cr0', |
| 1741 | }, |
| 1742 | ], |
| 1743 | 'condition': 'checkout_android', |
| 1744 | 'dep_type': 'cipd', |
| 1745 | }, |
| 1746 | |
| 1747 | 'src/third_party/android_deps/libs/androidx_cardview_cardview': { |
| 1748 | 'packages': [ |
| 1749 | { |
| 1750 | 'package': 'chromium/third_party/android_deps/libs/androidx_cardview_cardview', |
| 1751 | 'version': 'version:1.0.0-cr0', |
| 1752 | }, |
| 1753 | ], |
| 1754 | 'condition': 'checkout_android', |
| 1755 | 'dep_type': 'cipd', |
| 1756 | }, |
| 1757 | |
| 1758 | 'src/third_party/android_deps/libs/androidx_collection_collection': { |
| 1759 | 'packages': [ |
| 1760 | { |
| 1761 | 'package': 'chromium/third_party/android_deps/libs/androidx_collection_collection', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1762 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1763 | }, |
| 1764 | ], |
| 1765 | 'condition': 'checkout_android', |
| 1766 | 'dep_type': 'cipd', |
| 1767 | }, |
| 1768 | |
Ben Joyce | bd0d9e5 | 2019-11-12 09:01:50 | [diff] [blame] | 1769 | 'src/third_party/android_deps/libs/androidx_concurrent_concurrent_futures': { |
| 1770 | 'packages': [ |
| 1771 | { |
| 1772 | 'package': 'chromium/third_party/android_deps/libs/androidx_concurrent_concurrent_futures', |
| 1773 | 'version': 'version:1.0.0-cr0', |
| 1774 | }, |
| 1775 | ], |
| 1776 | 'condition': 'checkout_android', |
| 1777 | 'dep_type': 'cipd', |
| 1778 | }, |
| 1779 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1780 | 'src/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout': { |
| 1781 | 'packages': [ |
| 1782 | { |
| 1783 | 'package': 'chromium/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout', |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 1784 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1785 | }, |
| 1786 | ], |
| 1787 | 'condition': 'checkout_android', |
| 1788 | 'dep_type': 'cipd', |
| 1789 | }, |
| 1790 | |
| 1791 | 'src/third_party/android_deps/libs/androidx_core_core': { |
| 1792 | 'packages': [ |
| 1793 | { |
| 1794 | 'package': 'chromium/third_party/android_deps/libs/androidx_core_core', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1795 | 'version': 'version:1.3.0-beta01-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1796 | }, |
| 1797 | ], |
| 1798 | 'condition': 'checkout_android', |
| 1799 | 'dep_type': 'cipd', |
| 1800 | }, |
| 1801 | |
| 1802 | 'src/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter': { |
| 1803 | 'packages': [ |
| 1804 | { |
| 1805 | 'package': 'chromium/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter', |
| 1806 | 'version': 'version:1.0.0-cr0', |
| 1807 | }, |
| 1808 | ], |
| 1809 | 'condition': 'checkout_android', |
| 1810 | 'dep_type': 'cipd', |
| 1811 | }, |
| 1812 | |
| 1813 | 'src/third_party/android_deps/libs/androidx_customview_customview': { |
| 1814 | 'packages': [ |
| 1815 | { |
| 1816 | 'package': 'chromium/third_party/android_deps/libs/androidx_customview_customview', |
| 1817 | 'version': 'version:1.0.0-cr0', |
| 1818 | }, |
| 1819 | ], |
| 1820 | 'condition': 'checkout_android', |
| 1821 | 'dep_type': 'cipd', |
| 1822 | }, |
| 1823 | |
| 1824 | 'src/third_party/android_deps/libs/androidx_documentfile_documentfile': { |
| 1825 | 'packages': [ |
| 1826 | { |
| 1827 | 'package': 'chromium/third_party/android_deps/libs/androidx_documentfile_documentfile', |
| 1828 | 'version': 'version:1.0.0-cr0', |
| 1829 | }, |
| 1830 | ], |
| 1831 | 'condition': 'checkout_android', |
| 1832 | 'dep_type': 'cipd', |
| 1833 | }, |
| 1834 | |
| 1835 | 'src/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout': { |
| 1836 | 'packages': [ |
| 1837 | { |
| 1838 | 'package': 'chromium/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout', |
| 1839 | 'version': 'version:1.0.0-cr0', |
| 1840 | }, |
| 1841 | ], |
| 1842 | 'condition': 'checkout_android', |
| 1843 | 'dep_type': 'cipd', |
| 1844 | }, |
| 1845 | |
| 1846 | 'src/third_party/android_deps/libs/androidx_fragment_fragment': { |
| 1847 | 'packages': [ |
| 1848 | { |
| 1849 | 'package': 'chromium/third_party/android_deps/libs/androidx_fragment_fragment', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1850 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1851 | }, |
| 1852 | ], |
| 1853 | 'condition': 'checkout_android', |
| 1854 | 'dep_type': 'cipd', |
| 1855 | }, |
| 1856 | |
| 1857 | 'src/third_party/android_deps/libs/androidx_gridlayout_gridlayout': { |
| 1858 | 'packages': [ |
| 1859 | { |
| 1860 | 'package': 'chromium/third_party/android_deps/libs/androidx_gridlayout_gridlayout', |
| 1861 | 'version': 'version:1.0.0-cr0', |
| 1862 | }, |
| 1863 | ], |
| 1864 | 'condition': 'checkout_android', |
| 1865 | 'dep_type': 'cipd', |
| 1866 | }, |
| 1867 | |
| 1868 | 'src/third_party/android_deps/libs/androidx_interpolator_interpolator': { |
| 1869 | 'packages': [ |
| 1870 | { |
| 1871 | 'package': 'chromium/third_party/android_deps/libs/androidx_interpolator_interpolator', |
| 1872 | 'version': 'version:1.0.0-cr0', |
| 1873 | }, |
| 1874 | ], |
| 1875 | 'condition': 'checkout_android', |
| 1876 | 'dep_type': 'cipd', |
| 1877 | }, |
| 1878 | |
| 1879 | 'src/third_party/android_deps/libs/androidx_leanback_leanback': { |
| 1880 | 'packages': [ |
| 1881 | { |
| 1882 | 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback', |
| 1883 | 'version': 'version:1.0.0-cr0', |
| 1884 | }, |
| 1885 | ], |
| 1886 | 'condition': 'checkout_android', |
| 1887 | 'dep_type': 'cipd', |
| 1888 | }, |
| 1889 | |
| 1890 | 'src/third_party/android_deps/libs/androidx_leanback_leanback_preference': { |
| 1891 | 'packages': [ |
| 1892 | { |
| 1893 | 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback_preference', |
| 1894 | 'version': 'version:1.0.0-cr0', |
| 1895 | }, |
| 1896 | ], |
| 1897 | 'condition': 'checkout_android', |
| 1898 | 'dep_type': 'cipd', |
| 1899 | }, |
| 1900 | |
| 1901 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14': { |
| 1902 | 'packages': [ |
| 1903 | { |
| 1904 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14', |
| 1905 | 'version': 'version:1.0.0-cr0', |
| 1906 | }, |
| 1907 | ], |
| 1908 | 'condition': 'checkout_android', |
| 1909 | 'dep_type': 'cipd', |
| 1910 | }, |
| 1911 | |
| 1912 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui': { |
| 1913 | 'packages': [ |
| 1914 | { |
| 1915 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui', |
| 1916 | 'version': 'version:1.0.0-cr0', |
| 1917 | }, |
| 1918 | ], |
| 1919 | 'condition': 'checkout_android', |
| 1920 | 'dep_type': 'cipd', |
| 1921 | }, |
| 1922 | |
| 1923 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils': { |
| 1924 | 'packages': [ |
| 1925 | { |
| 1926 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils', |
| 1927 | 'version': 'version:1.0.0-cr0', |
| 1928 | }, |
| 1929 | ], |
| 1930 | 'condition': 'checkout_android', |
| 1931 | 'dep_type': 'cipd', |
| 1932 | }, |
| 1933 | |
| 1934 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v13': { |
| 1935 | 'packages': [ |
| 1936 | { |
| 1937 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v13', |
| 1938 | 'version': 'version:1.0.0-cr0', |
| 1939 | }, |
| 1940 | ], |
| 1941 | 'condition': 'checkout_android', |
| 1942 | 'dep_type': 'cipd', |
| 1943 | }, |
| 1944 | |
| 1945 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v4': { |
| 1946 | 'packages': [ |
| 1947 | { |
| 1948 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v4', |
| 1949 | 'version': 'version:1.0.0-cr0', |
| 1950 | }, |
| 1951 | ], |
| 1952 | 'condition': 'checkout_android', |
| 1953 | 'dep_type': 'cipd', |
| 1954 | }, |
| 1955 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1956 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 1957 | 'packages': [ |
| 1958 | { |
| 1959 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 1960 | 'version': 'version:2.1.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1961 | }, |
| 1962 | ], |
| 1963 | 'condition': 'checkout_android', |
| 1964 | 'dep_type': 'cipd', |
| 1965 | }, |
| 1966 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1967 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8': { |
| 1968 | 'packages': [ |
| 1969 | { |
| 1970 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8', |
| 1971 | 'version': 'version:2.0.0-cr0', |
| 1972 | }, |
| 1973 | ], |
| 1974 | 'condition': 'checkout_android', |
| 1975 | 'dep_type': 'cipd', |
| 1976 | }, |
| 1977 | |
| 1978 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata': { |
| 1979 | 'packages': [ |
| 1980 | { |
| 1981 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata', |
| 1982 | 'version': 'version:2.0.0-cr0', |
| 1983 | }, |
| 1984 | ], |
| 1985 | 'condition': 'checkout_android', |
| 1986 | 'dep_type': 'cipd', |
| 1987 | }, |
| 1988 | |
| 1989 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core': { |
| 1990 | 'packages': [ |
| 1991 | { |
| 1992 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core', |
| 1993 | 'version': 'version:2.0.0-cr0', |
| 1994 | }, |
| 1995 | ], |
| 1996 | 'condition': 'checkout_android', |
| 1997 | 'dep_type': 'cipd', |
| 1998 | }, |
| 1999 | |
| 2000 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime': { |
| 2001 | 'packages': [ |
| 2002 | { |
| 2003 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2004 | 'version': 'version:2.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2005 | }, |
| 2006 | ], |
| 2007 | 'condition': 'checkout_android', |
| 2008 | 'dep_type': 'cipd', |
| 2009 | }, |
| 2010 | |
| 2011 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel': { |
| 2012 | 'packages': [ |
| 2013 | { |
| 2014 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2015 | 'version': 'version:2.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2016 | }, |
| 2017 | ], |
| 2018 | 'condition': 'checkout_android', |
| 2019 | 'dep_type': 'cipd', |
| 2020 | }, |
| 2021 | |
| 2022 | 'src/third_party/android_deps/libs/androidx_loader_loader': { |
| 2023 | 'packages': [ |
| 2024 | { |
| 2025 | 'package': 'chromium/third_party/android_deps/libs/androidx_loader_loader', |
| 2026 | 'version': 'version:1.0.0-cr0', |
| 2027 | }, |
| 2028 | ], |
| 2029 | 'condition': 'checkout_android', |
| 2030 | 'dep_type': 'cipd', |
| 2031 | }, |
| 2032 | |
| 2033 | 'src/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager': { |
| 2034 | 'packages': [ |
| 2035 | { |
| 2036 | 'package': 'chromium/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager', |
| 2037 | 'version': 'version:1.0.0-cr0', |
| 2038 | }, |
| 2039 | ], |
| 2040 | 'condition': 'checkout_android', |
| 2041 | 'dep_type': 'cipd', |
| 2042 | }, |
| 2043 | |
| 2044 | 'src/third_party/android_deps/libs/androidx_media_media': { |
| 2045 | 'packages': [ |
| 2046 | { |
| 2047 | 'package': 'chromium/third_party/android_deps/libs/androidx_media_media', |
| 2048 | 'version': 'version:1.0.0-cr0', |
| 2049 | }, |
| 2050 | ], |
| 2051 | 'condition': 'checkout_android', |
| 2052 | 'dep_type': 'cipd', |
| 2053 | }, |
| 2054 | |
| 2055 | 'src/third_party/android_deps/libs/androidx_mediarouter_mediarouter': { |
| 2056 | 'packages': [ |
| 2057 | { |
| 2058 | 'package': 'chromium/third_party/android_deps/libs/androidx_mediarouter_mediarouter', |
| 2059 | 'version': 'version:1.0.0-cr0', |
| 2060 | }, |
| 2061 | ], |
| 2062 | 'condition': 'checkout_android', |
| 2063 | 'dep_type': 'cipd', |
| 2064 | }, |
| 2065 | |
| 2066 | 'src/third_party/android_deps/libs/androidx_multidex_multidex': { |
| 2067 | 'packages': [ |
| 2068 | { |
| 2069 | 'package': 'chromium/third_party/android_deps/libs/androidx_multidex_multidex', |
| 2070 | 'version': 'version:2.0.0-cr0', |
| 2071 | }, |
| 2072 | ], |
| 2073 | 'condition': 'checkout_android', |
| 2074 | 'dep_type': 'cipd', |
| 2075 | }, |
| 2076 | |
| 2077 | 'src/third_party/android_deps/libs/androidx_palette_palette': { |
| 2078 | 'packages': [ |
| 2079 | { |
| 2080 | 'package': 'chromium/third_party/android_deps/libs/androidx_palette_palette', |
| 2081 | 'version': 'version:1.0.0-cr0', |
| 2082 | }, |
| 2083 | ], |
| 2084 | 'condition': 'checkout_android', |
| 2085 | 'dep_type': 'cipd', |
| 2086 | }, |
| 2087 | |
| 2088 | 'src/third_party/android_deps/libs/androidx_preference_preference': { |
| 2089 | 'packages': [ |
| 2090 | { |
| 2091 | 'package': 'chromium/third_party/android_deps/libs/androidx_preference_preference', |
| 2092 | 'version': 'version:1.0.0-cr0', |
| 2093 | }, |
| 2094 | ], |
| 2095 | 'condition': 'checkout_android', |
| 2096 | 'dep_type': 'cipd', |
| 2097 | }, |
| 2098 | |
| 2099 | 'src/third_party/android_deps/libs/androidx_print_print': { |
| 2100 | 'packages': [ |
| 2101 | { |
| 2102 | 'package': 'chromium/third_party/android_deps/libs/androidx_print_print', |
| 2103 | 'version': 'version:1.0.0-cr0', |
| 2104 | }, |
| 2105 | ], |
| 2106 | 'condition': 'checkout_android', |
| 2107 | 'dep_type': 'cipd', |
| 2108 | }, |
| 2109 | |
| 2110 | 'src/third_party/android_deps/libs/androidx_recyclerview_recyclerview': { |
| 2111 | 'packages': [ |
| 2112 | { |
| 2113 | 'package': 'chromium/third_party/android_deps/libs/androidx_recyclerview_recyclerview', |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 2114 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2115 | }, |
| 2116 | ], |
| 2117 | 'condition': 'checkout_android', |
| 2118 | 'dep_type': 'cipd', |
| 2119 | }, |
| 2120 | |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2121 | 'src/third_party/android_deps/libs/androidx_savedstate_savedstate': { |
| 2122 | 'packages': [ |
| 2123 | { |
| 2124 | 'package': 'chromium/third_party/android_deps/libs/androidx_savedstate_savedstate', |
| 2125 | 'version': 'version:1.0.0-cr0', |
| 2126 | }, |
| 2127 | ], |
| 2128 | 'condition': 'checkout_android', |
| 2129 | 'dep_type': 'cipd', |
| 2130 | }, |
| 2131 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2132 | 'src/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout': { |
| 2133 | 'packages': [ |
| 2134 | { |
| 2135 | 'package': 'chromium/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout', |
| 2136 | 'version': 'version:1.0.0-cr0', |
| 2137 | }, |
| 2138 | ], |
| 2139 | 'condition': 'checkout_android', |
| 2140 | 'dep_type': 'cipd', |
| 2141 | }, |
| 2142 | |
| 2143 | 'src/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout': { |
| 2144 | 'packages': [ |
| 2145 | { |
| 2146 | 'package': 'chromium/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout', |
| 2147 | 'version': 'version:1.0.0-cr0', |
| 2148 | }, |
| 2149 | ], |
| 2150 | 'condition': 'checkout_android', |
| 2151 | 'dep_type': 'cipd', |
| 2152 | }, |
| 2153 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2154 | 'src/third_party/android_deps/libs/androidx_test_core': { |
| 2155 | 'packages': [ |
| 2156 | { |
| 2157 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2158 | 'version': 'version:1.2.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2159 | }, |
| 2160 | ], |
| 2161 | 'condition': 'checkout_android', |
| 2162 | 'dep_type': 'cipd', |
| 2163 | }, |
| 2164 | |
Ben Joyce | 3d4dd2cd | 2020-05-27 18:32:50 | [diff] [blame] | 2165 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_contrib': { |
| 2166 | 'packages': [ |
| 2167 | { |
| 2168 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_contrib', |
| 2169 | 'version': 'version:3.2.0-cr0', |
| 2170 | }, |
| 2171 | ], |
| 2172 | 'condition': 'checkout_android', |
| 2173 | 'dep_type': 'cipd', |
| 2174 | }, |
| 2175 | |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 2176 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_core': { |
| 2177 | 'packages': [ |
| 2178 | { |
| 2179 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_core', |
Ben Joyce | 3d4dd2cd | 2020-05-27 18:32:50 | [diff] [blame] | 2180 | 'version': 'version:3.2.0-cr0', |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 2181 | }, |
| 2182 | ], |
| 2183 | 'condition': 'checkout_android', |
| 2184 | 'dep_type': 'cipd', |
| 2185 | }, |
| 2186 | |
| 2187 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource': { |
| 2188 | 'packages': [ |
| 2189 | { |
| 2190 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource', |
Ben Joyce | 3d4dd2cd | 2020-05-27 18:32:50 | [diff] [blame] | 2191 | 'version': 'version:3.2.0-cr0', |
| 2192 | }, |
| 2193 | ], |
| 2194 | 'condition': 'checkout_android', |
| 2195 | 'dep_type': 'cipd', |
| 2196 | }, |
| 2197 | |
| 2198 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_intents': { |
| 2199 | 'packages': [ |
| 2200 | { |
| 2201 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_intents', |
| 2202 | 'version': 'version:3.2.0-cr0', |
| 2203 | }, |
| 2204 | ], |
| 2205 | 'condition': 'checkout_android', |
| 2206 | 'dep_type': 'cipd', |
| 2207 | }, |
| 2208 | |
| 2209 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_web': { |
| 2210 | 'packages': [ |
| 2211 | { |
| 2212 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_web', |
| 2213 | 'version': 'version:3.2.0-cr0', |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 2214 | }, |
| 2215 | ], |
| 2216 | 'condition': 'checkout_android', |
| 2217 | 'dep_type': 'cipd', |
| 2218 | }, |
| 2219 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2220 | 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 2221 | 'packages': [ |
| 2222 | { |
| 2223 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2224 | 'version': 'version:1.1.1-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2225 | }, |
| 2226 | ], |
| 2227 | 'condition': 'checkout_android', |
| 2228 | 'dep_type': 'cipd', |
| 2229 | }, |
| 2230 | |
| 2231 | 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 2232 | 'packages': [ |
| 2233 | { |
| 2234 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2235 | 'version': 'version:1.2.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2236 | }, |
| 2237 | ], |
| 2238 | 'condition': 'checkout_android', |
| 2239 | 'dep_type': 'cipd', |
| 2240 | }, |
| 2241 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2242 | 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 2243 | 'packages': [ |
| 2244 | { |
| 2245 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2246 | 'version': 'version:1.2.0-cr0', |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2247 | }, |
| 2248 | ], |
| 2249 | 'condition': 'checkout_android', |
| 2250 | 'dep_type': 'cipd', |
| 2251 | }, |
| 2252 | |
| 2253 | 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 2254 | 'packages': [ |
| 2255 | { |
| 2256 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2257 | 'version': 'version:1.2.0-cr0', |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2258 | }, |
| 2259 | ], |
| 2260 | 'condition': 'checkout_android', |
| 2261 | 'dep_type': 'cipd', |
| 2262 | }, |
| 2263 | |
Ben Joyce | 6508d42 | 2019-09-21 00:23:48 | [diff] [blame] | 2264 | 'src/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator': { |
| 2265 | 'packages': [ |
| 2266 | { |
| 2267 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator', |
| 2268 | 'version': 'version:2.2.0-cr0', |
| 2269 | }, |
| 2270 | ], |
| 2271 | 'condition': 'checkout_android', |
| 2272 | 'dep_type': 'cipd', |
| 2273 | }, |
| 2274 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2275 | 'src/third_party/android_deps/libs/androidx_transition_transition': { |
| 2276 | 'packages': [ |
| 2277 | { |
| 2278 | 'package': 'chromium/third_party/android_deps/libs/androidx_transition_transition', |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 2279 | 'version': 'version:1.2.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2280 | }, |
| 2281 | ], |
| 2282 | 'condition': 'checkout_android', |
| 2283 | 'dep_type': 'cipd', |
| 2284 | }, |
| 2285 | |
Ben Joyce | 953b889 | 2020-04-21 23:53:38 | [diff] [blame] | 2286 | 'src/third_party/android_deps/libs/androidx_tvprovider_tvprovider': { |
| 2287 | 'packages': [ |
| 2288 | { |
| 2289 | 'package': 'chromium/third_party/android_deps/libs/androidx_tvprovider_tvprovider', |
| 2290 | 'version': 'version:1.0.0-cr0', |
| 2291 | }, |
| 2292 | ], |
| 2293 | 'condition': 'checkout_android', |
| 2294 | 'dep_type': 'cipd', |
| 2295 | }, |
| 2296 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2297 | 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable': { |
| 2298 | 'packages': [ |
| 2299 | { |
| 2300 | 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2301 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2302 | }, |
| 2303 | ], |
| 2304 | 'condition': 'checkout_android', |
| 2305 | 'dep_type': 'cipd', |
| 2306 | }, |
| 2307 | |
| 2308 | 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated': { |
| 2309 | 'packages': [ |
| 2310 | { |
| 2311 | 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2312 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2313 | }, |
| 2314 | ], |
| 2315 | 'condition': 'checkout_android', |
| 2316 | 'dep_type': 'cipd', |
| 2317 | }, |
| 2318 | |
| 2319 | 'src/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable': { |
| 2320 | 'packages': [ |
| 2321 | { |
| 2322 | 'package': 'chromium/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable', |
Andrew Grieve | 48d38b8 | 2020-05-12 16:40:19 | [diff] [blame] | 2323 | 'version': 'version:1.1.0-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2324 | }, |
| 2325 | ], |
| 2326 | 'condition': 'checkout_android', |
| 2327 | 'dep_type': 'cipd', |
| 2328 | }, |
| 2329 | |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 2330 | 'src/third_party/android_deps/libs/androidx_viewpager2_viewpager2': { |
| 2331 | 'packages': [ |
| 2332 | { |
| 2333 | 'package': 'chromium/third_party/android_deps/libs/androidx_viewpager2_viewpager2', |
| 2334 | 'version': 'version:1.0.0-cr0', |
| 2335 | }, |
| 2336 | ], |
| 2337 | 'condition': 'checkout_android', |
| 2338 | 'dep_type': 'cipd', |
| 2339 | }, |
| 2340 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2341 | 'src/third_party/android_deps/libs/androidx_viewpager_viewpager': { |
| 2342 | 'packages': [ |
| 2343 | { |
| 2344 | 'package': 'chromium/third_party/android_deps/libs/androidx_viewpager_viewpager', |
| 2345 | 'version': 'version:1.0.0-cr0', |
| 2346 | }, |
| 2347 | ], |
| 2348 | 'condition': 'checkout_android', |
| 2349 | 'dep_type': 'cipd', |
| 2350 | }, |
| 2351 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 2352 | 'src/third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent': { |
| 2353 | 'packages': [ |
| 2354 | { |
| 2355 | 'package': 'chromium/third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent', |
| 2356 | 'version': 'version:3.1-cr0', |
| 2357 | }, |
| 2358 | ], |
| 2359 | 'condition': 'checkout_android', |
| 2360 | 'dep_type': 'cipd', |
| 2361 | }, |
| 2362 | |
| 2363 | 'src/third_party/android_deps/libs/classworlds_classworlds': { |
| 2364 | 'packages': [ |
| 2365 | { |
| 2366 | 'package': 'chromium/third_party/android_deps/libs/classworlds_classworlds', |
| 2367 | 'version': 'version:1.1-alpha-2-cr0', |
| 2368 | }, |
| 2369 | ], |
| 2370 | 'condition': 'checkout_android', |
| 2371 | 'dep_type': 'cipd', |
| 2372 | }, |
| 2373 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2374 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2375 | 'packages': [ |
| 2376 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2377 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2378 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2379 | }, |
| 2380 | ], |
| 2381 | 'condition': 'checkout_android', |
| 2382 | 'dep_type': 'cipd', |
| 2383 | }, |
| 2384 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2385 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2386 | 'packages': [ |
| 2387 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2388 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2389 | 'version': 'version:28.0.0-cr0', |
| 2390 | }, |
| 2391 | ], |
| 2392 | 'condition': 'checkout_android', |
| 2393 | 'dep_type': 'cipd', |
| 2394 | }, |
| 2395 | |
| 2396 | 'src/third_party/android_deps/libs/com_android_support_asynclayoutinflater': { |
| 2397 | 'packages': [ |
| 2398 | { |
| 2399 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_asynclayoutinflater', |
| 2400 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2401 | }, |
| 2402 | ], |
| 2403 | 'condition': 'checkout_android', |
| 2404 | 'dep_type': 'cipd', |
| 2405 | }, |
| 2406 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2407 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2408 | 'packages': [ |
| 2409 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2410 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2411 | 'version': 'version:28.0.0-cr0', |
| 2412 | }, |
| 2413 | ], |
| 2414 | 'condition': 'checkout_android', |
| 2415 | 'dep_type': 'cipd', |
| 2416 | }, |
| 2417 | |
| 2418 | 'src/third_party/android_deps/libs/com_android_support_collections': { |
| 2419 | 'packages': [ |
| 2420 | { |
| 2421 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_collections', |
| 2422 | 'version': 'version:28.0.0-cr0', |
| 2423 | }, |
| 2424 | ], |
| 2425 | 'condition': 'checkout_android', |
| 2426 | 'dep_type': 'cipd', |
| 2427 | }, |
| 2428 | |
| 2429 | 'src/third_party/android_deps/libs/com_android_support_coordinatorlayout': { |
| 2430 | 'packages': [ |
| 2431 | { |
| 2432 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_coordinatorlayout', |
| 2433 | 'version': 'version:28.0.0-cr0', |
| 2434 | }, |
| 2435 | ], |
| 2436 | 'condition': 'checkout_android', |
| 2437 | 'dep_type': 'cipd', |
| 2438 | }, |
| 2439 | |
| 2440 | 'src/third_party/android_deps/libs/com_android_support_cursoradapter': { |
| 2441 | 'packages': [ |
| 2442 | { |
| 2443 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cursoradapter', |
| 2444 | 'version': 'version:28.0.0-cr0', |
| 2445 | }, |
| 2446 | ], |
| 2447 | 'condition': 'checkout_android', |
| 2448 | 'dep_type': 'cipd', |
| 2449 | }, |
| 2450 | |
| 2451 | 'src/third_party/android_deps/libs/com_android_support_customview': { |
| 2452 | 'packages': [ |
| 2453 | { |
| 2454 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_customview', |
| 2455 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2456 | }, |
| 2457 | ], |
| 2458 | 'condition': 'checkout_android', |
| 2459 | 'dep_type': 'cipd', |
| 2460 | }, |
| 2461 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2462 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2463 | 'packages': [ |
| 2464 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2465 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2466 | 'version': 'version:28.0.0-cr0', |
| 2467 | }, |
| 2468 | ], |
| 2469 | 'condition': 'checkout_android', |
| 2470 | 'dep_type': 'cipd', |
| 2471 | }, |
| 2472 | |
| 2473 | 'src/third_party/android_deps/libs/com_android_support_documentfile': { |
| 2474 | 'packages': [ |
| 2475 | { |
| 2476 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_documentfile', |
| 2477 | 'version': 'version:28.0.0-cr0', |
| 2478 | }, |
| 2479 | ], |
| 2480 | 'condition': 'checkout_android', |
| 2481 | 'dep_type': 'cipd', |
| 2482 | }, |
| 2483 | |
| 2484 | 'src/third_party/android_deps/libs/com_android_support_drawerlayout': { |
| 2485 | 'packages': [ |
| 2486 | { |
| 2487 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_drawerlayout', |
| 2488 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2489 | }, |
| 2490 | ], |
| 2491 | 'condition': 'checkout_android', |
| 2492 | 'dep_type': 'cipd', |
| 2493 | }, |
| 2494 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2495 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2496 | 'packages': [ |
| 2497 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2498 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2499 | 'version': 'version:28.0.0-cr0', |
| 2500 | }, |
| 2501 | ], |
| 2502 | 'condition': 'checkout_android', |
| 2503 | 'dep_type': 'cipd', |
| 2504 | }, |
| 2505 | |
| 2506 | 'src/third_party/android_deps/libs/com_android_support_interpolator': { |
| 2507 | 'packages': [ |
| 2508 | { |
| 2509 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_interpolator', |
| 2510 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2511 | }, |
| 2512 | ], |
| 2513 | 'condition': 'checkout_android', |
| 2514 | 'dep_type': 'cipd', |
| 2515 | }, |
| 2516 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2517 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2518 | 'packages': [ |
| 2519 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2520 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2521 | 'version': 'version:28.0.0-cr0', |
| 2522 | }, |
| 2523 | ], |
| 2524 | 'condition': 'checkout_android', |
| 2525 | 'dep_type': 'cipd', |
| 2526 | }, |
| 2527 | |
| 2528 | 'src/third_party/android_deps/libs/com_android_support_loader': { |
| 2529 | 'packages': [ |
| 2530 | { |
| 2531 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_loader', |
| 2532 | 'version': 'version:28.0.0-cr0', |
| 2533 | }, |
| 2534 | ], |
| 2535 | 'condition': 'checkout_android', |
| 2536 | 'dep_type': 'cipd', |
| 2537 | }, |
| 2538 | |
| 2539 | 'src/third_party/android_deps/libs/com_android_support_localbroadcastmanager': { |
| 2540 | 'packages': [ |
| 2541 | { |
| 2542 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_localbroadcastmanager', |
| 2543 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2544 | }, |
| 2545 | ], |
| 2546 | 'condition': 'checkout_android', |
| 2547 | 'dep_type': 'cipd', |
| 2548 | }, |
| 2549 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2550 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2551 | 'packages': [ |
| 2552 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2553 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2554 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2555 | }, |
| 2556 | ], |
| 2557 | 'condition': 'checkout_android', |
| 2558 | 'dep_type': 'cipd', |
| 2559 | }, |
| 2560 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2561 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2562 | 'packages': [ |
| 2563 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2564 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 2565 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2566 | }, |
| 2567 | ], |
| 2568 | 'condition': 'checkout_android', |
| 2569 | 'dep_type': 'cipd', |
| 2570 | }, |
| 2571 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2572 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2573 | 'packages': [ |
| 2574 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2575 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2576 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2577 | }, |
| 2578 | ], |
| 2579 | 'condition': 'checkout_android', |
| 2580 | 'dep_type': 'cipd', |
| 2581 | }, |
| 2582 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2583 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2584 | 'packages': [ |
| 2585 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2586 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2587 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2588 | }, |
| 2589 | ], |
| 2590 | 'condition': 'checkout_android', |
| 2591 | 'dep_type': 'cipd', |
| 2592 | }, |
| 2593 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2594 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2595 | 'packages': [ |
| 2596 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2597 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2598 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2599 | }, |
| 2600 | ], |
| 2601 | 'condition': 'checkout_android', |
| 2602 | 'dep_type': 'cipd', |
| 2603 | }, |
| 2604 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2605 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2606 | 'packages': [ |
| 2607 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2608 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2609 | 'version': 'version:28.0.0-cr0', |
| 2610 | }, |
| 2611 | ], |
| 2612 | 'condition': 'checkout_android', |
| 2613 | 'dep_type': 'cipd', |
| 2614 | }, |
| 2615 | |
| 2616 | 'src/third_party/android_deps/libs/com_android_support_print': { |
| 2617 | 'packages': [ |
| 2618 | { |
| 2619 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_print', |
| 2620 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2621 | }, |
| 2622 | ], |
| 2623 | 'condition': 'checkout_android', |
| 2624 | 'dep_type': 'cipd', |
| 2625 | }, |
| 2626 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2627 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2628 | 'packages': [ |
| 2629 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2630 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2631 | 'version': 'version:28.0.0-cr0', |
| 2632 | }, |
| 2633 | ], |
| 2634 | 'condition': 'checkout_android', |
| 2635 | 'dep_type': 'cipd', |
| 2636 | }, |
| 2637 | |
| 2638 | 'src/third_party/android_deps/libs/com_android_support_slidingpanelayout': { |
| 2639 | 'packages': [ |
| 2640 | { |
| 2641 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_slidingpanelayout', |
| 2642 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2643 | }, |
| 2644 | ], |
| 2645 | 'condition': 'checkout_android', |
| 2646 | 'dep_type': 'cipd', |
| 2647 | }, |
| 2648 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2649 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2650 | 'packages': [ |
| 2651 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2652 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2653 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2654 | }, |
| 2655 | ], |
| 2656 | 'condition': 'checkout_android', |
| 2657 | 'dep_type': 'cipd', |
| 2658 | }, |
| 2659 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2660 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2661 | 'packages': [ |
| 2662 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2663 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2664 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2665 | }, |
| 2666 | ], |
| 2667 | 'condition': 'checkout_android', |
| 2668 | 'dep_type': 'cipd', |
| 2669 | }, |
| 2670 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2671 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2672 | 'packages': [ |
| 2673 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2674 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2675 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2676 | }, |
| 2677 | ], |
| 2678 | 'condition': 'checkout_android', |
| 2679 | 'dep_type': 'cipd', |
| 2680 | }, |
| 2681 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2682 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2683 | 'packages': [ |
| 2684 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2685 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2686 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2687 | }, |
| 2688 | ], |
| 2689 | 'condition': 'checkout_android', |
| 2690 | 'dep_type': 'cipd', |
| 2691 | }, |
| 2692 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2693 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2694 | 'packages': [ |
| 2695 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2696 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2697 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2698 | }, |
| 2699 | ], |
| 2700 | 'condition': 'checkout_android', |
| 2701 | 'dep_type': 'cipd', |
| 2702 | }, |
| 2703 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2704 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2705 | 'packages': [ |
| 2706 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2707 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2708 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2709 | }, |
| 2710 | ], |
| 2711 | 'condition': 'checkout_android', |
| 2712 | 'dep_type': 'cipd', |
| 2713 | }, |
| 2714 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2715 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2716 | 'packages': [ |
| 2717 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2718 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2719 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2720 | }, |
| 2721 | ], |
| 2722 | 'condition': 'checkout_android', |
| 2723 | 'dep_type': 'cipd', |
| 2724 | }, |
| 2725 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2726 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2727 | 'packages': [ |
| 2728 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2729 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2730 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2731 | }, |
| 2732 | ], |
| 2733 | 'condition': 'checkout_android', |
| 2734 | 'dep_type': 'cipd', |
| 2735 | }, |
| 2736 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2737 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2738 | 'packages': [ |
| 2739 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2740 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2741 | 'version': 'version:28.0.0-cr0', |
| 2742 | }, |
| 2743 | ], |
| 2744 | 'condition': 'checkout_android', |
| 2745 | 'dep_type': 'cipd', |
| 2746 | }, |
| 2747 | |
| 2748 | 'src/third_party/android_deps/libs/com_android_support_swiperefreshlayout': { |
| 2749 | 'packages': [ |
| 2750 | { |
| 2751 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_swiperefreshlayout', |
| 2752 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2753 | }, |
| 2754 | ], |
| 2755 | 'condition': 'checkout_android', |
| 2756 | 'dep_type': 'cipd', |
| 2757 | }, |
| 2758 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2759 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2760 | 'packages': [ |
| 2761 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2762 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2763 | 'version': 'version:28.0.0-cr0', |
| 2764 | }, |
| 2765 | ], |
| 2766 | 'condition': 'checkout_android', |
| 2767 | 'dep_type': 'cipd', |
| 2768 | }, |
| 2769 | |
| 2770 | 'src/third_party/android_deps/libs/com_android_support_versionedparcelable': { |
| 2771 | 'packages': [ |
| 2772 | { |
| 2773 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_versionedparcelable', |
| 2774 | 'version': 'version:28.0.0-cr0', |
| 2775 | }, |
| 2776 | ], |
| 2777 | 'condition': 'checkout_android', |
| 2778 | 'dep_type': 'cipd', |
| 2779 | }, |
| 2780 | |
| 2781 | 'src/third_party/android_deps/libs/com_android_support_viewpager': { |
| 2782 | 'packages': [ |
| 2783 | { |
| 2784 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_viewpager', |
| 2785 | 'version': 'version:28.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2786 | }, |
| 2787 | ], |
| 2788 | 'condition': 'checkout_android', |
| 2789 | 'dep_type': 'cipd', |
| 2790 | }, |
| 2791 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 2792 | 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core': { |
| 2793 | 'packages': [ |
| 2794 | { |
| 2795 | 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core', |
| 2796 | 'version': 'version:1.0.0-beta08-cr0', |
| 2797 | }, |
| 2798 | ], |
| 2799 | 'condition': 'checkout_android', |
| 2800 | 'dep_type': 'cipd', |
| 2801 | }, |
| 2802 | |
| 2803 | 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor': { |
| 2804 | 'packages': [ |
| 2805 | { |
| 2806 | 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor', |
| 2807 | 'version': 'version:1.0.0-beta08-cr0', |
| 2808 | }, |
| 2809 | ], |
| 2810 | 'condition': 'checkout_android', |
| 2811 | 'dep_type': 'cipd', |
| 2812 | }, |
| 2813 | |
Andrew Grieve | 91ef410 | 2020-04-22 14:17:31 | [diff] [blame] | 2814 | 'src/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs': { |
| 2815 | 'packages': [ |
| 2816 | { |
| 2817 | 'package': 'chromium/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs', |
| 2818 | 'version': 'version:1.0.5-cr0', |
| 2819 | }, |
| 2820 | ], |
| 2821 | 'condition': 'checkout_android', |
| 2822 | 'dep_type': 'cipd', |
| 2823 | }, |
| 2824 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2825 | 'src/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine': { |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2826 | 'packages': [ |
| 2827 | { |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2828 | 'package': 'chromium/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine', |
| 2829 | 'version': 'version:2.7.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2830 | }, |
| 2831 | ], |
| 2832 | 'condition': 'checkout_android', |
| 2833 | 'dep_type': 'cipd', |
| 2834 | }, |
| 2835 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2836 | 'src/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms': { |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2837 | 'packages': [ |
| 2838 | { |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2839 | 'package': 'chromium/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms', |
| 2840 | 'version': 'version:1.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2841 | }, |
| 2842 | ], |
| 2843 | 'condition': 'checkout_android', |
| 2844 | 'dep_type': 'cipd', |
| 2845 | }, |
| 2846 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2847 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 2848 | 'packages': [ |
| 2849 | { |
| 2850 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2851 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2852 | }, |
| 2853 | ], |
| 2854 | 'condition': 'checkout_android', |
| 2855 | 'dep_type': 'cipd', |
| 2856 | }, |
| 2857 | |
| 2858 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 2859 | 'packages': [ |
| 2860 | { |
| 2861 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2862 | 'version': 'version:17.1.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2863 | }, |
| 2864 | ], |
| 2865 | 'condition': 'checkout_android', |
| 2866 | 'dep_type': 'cipd', |
| 2867 | }, |
| 2868 | |
| 2869 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 2870 | 'packages': [ |
| 2871 | { |
| 2872 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2873 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2874 | }, |
| 2875 | ], |
| 2876 | 'condition': 'checkout_android', |
| 2877 | 'dep_type': 'cipd', |
| 2878 | }, |
| 2879 | |
| 2880 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 2881 | 'packages': [ |
| 2882 | { |
| 2883 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_base', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2884 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2885 | }, |
| 2886 | ], |
| 2887 | 'condition': 'checkout_android', |
| 2888 | 'dep_type': 'cipd', |
| 2889 | }, |
| 2890 | |
| 2891 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 2892 | 'packages': [ |
| 2893 | { |
| 2894 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_basement', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2895 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2896 | }, |
| 2897 | ], |
| 2898 | 'condition': 'checkout_android', |
| 2899 | 'dep_type': 'cipd', |
| 2900 | }, |
| 2901 | |
| 2902 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 2903 | 'packages': [ |
| 2904 | { |
| 2905 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2906 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2907 | }, |
| 2908 | ], |
| 2909 | 'condition': 'checkout_android', |
| 2910 | 'dep_type': 'cipd', |
| 2911 | }, |
| 2912 | |
| 2913 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 2914 | 'packages': [ |
| 2915 | { |
| 2916 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2917 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2918 | }, |
| 2919 | ], |
| 2920 | 'condition': 'checkout_android', |
| 2921 | 'dep_type': 'cipd', |
| 2922 | }, |
| 2923 | |
| 2924 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 2925 | 'packages': [ |
| 2926 | { |
| 2927 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2928 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2929 | }, |
| 2930 | ], |
| 2931 | 'condition': 'checkout_android', |
| 2932 | 'dep_type': 'cipd', |
| 2933 | }, |
| 2934 | |
| 2935 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 2936 | 'packages': [ |
| 2937 | { |
| 2938 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_fido', |
Sam Maier | cc58f08 | 2020-03-11 19:09:33 | [diff] [blame] | 2939 | 'version': 'version:18.1.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2940 | }, |
| 2941 | ], |
| 2942 | 'condition': 'checkout_android', |
| 2943 | 'dep_type': 'cipd', |
| 2944 | }, |
| 2945 | |
| 2946 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 2947 | 'packages': [ |
| 2948 | { |
| 2949 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2950 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2951 | }, |
| 2952 | ], |
| 2953 | 'condition': 'checkout_android', |
| 2954 | 'dep_type': 'cipd', |
| 2955 | }, |
| 2956 | |
| 2957 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 2958 | 'packages': [ |
| 2959 | { |
| 2960 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_gcm', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2961 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2962 | }, |
| 2963 | ], |
| 2964 | 'condition': 'checkout_android', |
| 2965 | 'dep_type': 'cipd', |
| 2966 | }, |
| 2967 | |
| 2968 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 2969 | 'packages': [ |
| 2970 | { |
| 2971 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_iid', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2972 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2973 | }, |
| 2974 | ], |
| 2975 | 'condition': 'checkout_android', |
| 2976 | 'dep_type': 'cipd', |
| 2977 | }, |
| 2978 | |
| 2979 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 2980 | 'packages': [ |
| 2981 | { |
| 2982 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2983 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2984 | }, |
| 2985 | ], |
| 2986 | 'condition': 'checkout_android', |
| 2987 | 'dep_type': 'cipd', |
| 2988 | }, |
| 2989 | |
| 2990 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 2991 | 'packages': [ |
| 2992 | { |
| 2993 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_location', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2994 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2995 | }, |
| 2996 | ], |
| 2997 | 'condition': 'checkout_android', |
| 2998 | 'dep_type': 'cipd', |
| 2999 | }, |
| 3000 | |
| 3001 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 3002 | 'packages': [ |
| 3003 | { |
| 3004 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3005 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 3006 | }, |
| 3007 | ], |
| 3008 | 'condition': 'checkout_android', |
| 3009 | 'dep_type': 'cipd', |
| 3010 | }, |
| 3011 | |
| 3012 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 3013 | 'packages': [ |
| 3014 | { |
| 3015 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3016 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 3017 | }, |
| 3018 | ], |
| 3019 | 'condition': 'checkout_android', |
| 3020 | 'dep_type': 'cipd', |
| 3021 | }, |
| 3022 | |
| 3023 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 3024 | 'packages': [ |
| 3025 | { |
| 3026 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3027 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 3028 | }, |
| 3029 | ], |
| 3030 | 'condition': 'checkout_android', |
| 3031 | 'dep_type': 'cipd', |
| 3032 | }, |
| 3033 | |
| 3034 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 3035 | 'packages': [ |
| 3036 | { |
| 3037 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_tasks', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3038 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 3039 | }, |
| 3040 | ], |
| 3041 | 'condition': 'checkout_android', |
| 3042 | 'dep_type': 'cipd', |
| 3043 | }, |
| 3044 | |
| 3045 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 3046 | 'packages': [ |
| 3047 | { |
| 3048 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3049 | 'version': 'version:18.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 3050 | }, |
| 3051 | ], |
| 3052 | 'condition': 'checkout_android', |
| 3053 | 'dep_type': 'cipd', |
| 3054 | }, |
| 3055 | |
| 3056 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 3057 | 'packages': [ |
| 3058 | { |
| 3059 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 3060 | 'version': 'version:18.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 3061 | }, |
| 3062 | ], |
| 3063 | 'condition': 'checkout_android', |
| 3064 | 'dep_type': 'cipd', |
| 3065 | }, |
| 3066 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 3067 | 'src/third_party/android_deps/libs/com_google_android_material_material': { |
| 3068 | 'packages': [ |
| 3069 | { |
| 3070 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_material_material', |
Ben Joyce | 05e34dd | 2020-06-02 23:10:36 | [diff] [blame] | 3071 | 'version': 'version:1.2.0-alpha06-cr0', |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 3072 | }, |
| 3073 | ], |
| 3074 | 'condition': 'checkout_android', |
| 3075 | 'dep_type': 'cipd', |
| 3076 | }, |
| 3077 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3078 | 'src/third_party/android_deps/libs/com_google_auto_auto_common': { |
| 3079 | 'packages': [ |
| 3080 | { |
| 3081 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_auto_common', |
| 3082 | 'version': 'version:0.10-cr0', |
| 3083 | }, |
| 3084 | ], |
| 3085 | 'condition': 'checkout_android', |
| 3086 | 'dep_type': 'cipd', |
| 3087 | }, |
| 3088 | |
| 3089 | 'src/third_party/android_deps/libs/com_google_auto_service_auto_service': { |
| 3090 | 'packages': [ |
| 3091 | { |
| 3092 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service', |
| 3093 | 'version': 'version:1.0-rc6-cr0', |
| 3094 | }, |
| 3095 | ], |
| 3096 | 'condition': 'checkout_android', |
| 3097 | 'dep_type': 'cipd', |
| 3098 | }, |
| 3099 | |
| 3100 | 'src/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations': { |
| 3101 | 'packages': [ |
| 3102 | { |
| 3103 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations', |
| 3104 | 'version': 'version:1.0-rc6-cr0', |
| 3105 | }, |
| 3106 | ], |
| 3107 | 'condition': 'checkout_android', |
| 3108 | 'dep_type': 'cipd', |
| 3109 | }, |
| 3110 | |
| 3111 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jFormatString': { |
| 3112 | 'packages': [ |
| 3113 | { |
| 3114 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jformatstring', |
| 3115 | 'version': 'version:3.0.0-cr0', |
| 3116 | }, |
| 3117 | ], |
| 3118 | 'condition': 'checkout_android', |
| 3119 | 'dep_type': 'cipd', |
| 3120 | }, |
| 3121 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3122 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 3123 | 'packages': [ |
| 3124 | { |
| 3125 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3126 | 'version': 'version:3.0.2-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3127 | }, |
| 3128 | ], |
| 3129 | 'condition': 'checkout_android', |
| 3130 | 'dep_type': 'cipd', |
| 3131 | }, |
| 3132 | |
Andrew Grieve | ec7ec421 | 2020-02-03 22:15:50 | [diff] [blame] | 3133 | 'src/third_party/android_deps/libs/com_google_code_gson_gson': { |
| 3134 | 'packages': [ |
| 3135 | { |
| 3136 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_gson_gson', |
| 3137 | 'version': 'version:2.8.0-cr0', |
| 3138 | }, |
| 3139 | ], |
| 3140 | 'condition': 'checkout_android', |
| 3141 | 'dep_type': 'cipd', |
| 3142 | }, |
| 3143 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3144 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 3145 | 'packages': [ |
| 3146 | { |
| 3147 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3148 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3149 | }, |
| 3150 | ], |
| 3151 | 'condition': 'checkout_android', |
| 3152 | 'dep_type': 'cipd', |
| 3153 | }, |
| 3154 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3155 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 3156 | 'packages': [ |
| 3157 | { |
| 3158 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3159 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3160 | }, |
| 3161 | ], |
| 3162 | 'condition': 'checkout_android', |
| 3163 | 'dep_type': 'cipd', |
| 3164 | }, |
| 3165 | |
| 3166 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 3167 | 'packages': [ |
| 3168 | { |
| 3169 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3170 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3171 | }, |
| 3172 | ], |
| 3173 | 'condition': 'checkout_android', |
| 3174 | 'dep_type': 'cipd', |
| 3175 | }, |
| 3176 | |
| 3177 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3178 | 'packages': [ |
| 3179 | { |
| 3180 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3181 | 'version': 'version:2.26-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3182 | }, |
| 3183 | ], |
| 3184 | 'condition': 'checkout_android', |
| 3185 | 'dep_type': 'cipd', |
| 3186 | }, |
| 3187 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3188 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation': { |
| 3189 | 'packages': [ |
| 3190 | { |
| 3191 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3192 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3193 | }, |
| 3194 | ], |
| 3195 | 'condition': 'checkout_android', |
| 3196 | 'dep_type': 'cipd', |
| 3197 | }, |
| 3198 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3199 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 3200 | 'packages': [ |
| 3201 | { |
| 3202 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3203 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3204 | }, |
| 3205 | ], |
| 3206 | 'condition': 'checkout_android', |
| 3207 | 'dep_type': 'cipd', |
| 3208 | }, |
| 3209 | |
| 3210 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api': { |
| 3211 | 'packages': [ |
| 3212 | { |
| 3213 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3214 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3215 | }, |
| 3216 | ], |
| 3217 | 'condition': 'checkout_android', |
| 3218 | 'dep_type': 'cipd', |
| 3219 | }, |
| 3220 | |
| 3221 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_core': { |
| 3222 | 'packages': [ |
| 3223 | { |
| 3224 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_core', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3225 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3226 | }, |
| 3227 | ], |
| 3228 | 'condition': 'checkout_android', |
| 3229 | 'dep_type': 'cipd', |
| 3230 | }, |
| 3231 | |
| 3232 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations': { |
| 3233 | 'packages': [ |
| 3234 | { |
| 3235 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3236 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3237 | }, |
| 3238 | ], |
| 3239 | 'condition': 'checkout_android', |
| 3240 | 'dep_type': 'cipd', |
| 3241 | }, |
| 3242 | |
| 3243 | 'src/third_party/android_deps/libs/com_google_errorprone_javac': { |
| 3244 | 'packages': [ |
| 3245 | { |
| 3246 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac', |
| 3247 | 'version': 'version:9+181-r4173-1-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3248 | }, |
| 3249 | ], |
| 3250 | 'condition': 'checkout_android', |
| 3251 | 'dep_type': 'cipd', |
| 3252 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3253 | |
| 3254 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 3255 | 'packages': [ |
| 3256 | { |
| 3257 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 3258 | 'version': 'version:9-dev-r4023-3-cr0', |
| 3259 | }, |
| 3260 | ], |
| 3261 | 'condition': 'checkout_android', |
| 3262 | 'dep_type': 'cipd', |
| 3263 | }, |
| 3264 | |
| 3265 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 3266 | 'packages': [ |
| 3267 | { |
| 3268 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 3269 | 'version': 'version:1.5-cr0', |
| 3270 | }, |
| 3271 | ], |
| 3272 | 'condition': 'checkout_android', |
| 3273 | 'dep_type': 'cipd', |
| 3274 | }, |
| 3275 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3276 | 'src/third_party/android_deps/libs/com_google_guava_failureaccess': { |
| 3277 | 'packages': [ |
| 3278 | { |
| 3279 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_failureaccess', |
| 3280 | 'version': 'version:1.0.1-cr0', |
| 3281 | }, |
| 3282 | ], |
| 3283 | 'condition': 'checkout_android', |
| 3284 | 'dep_type': 'cipd', |
| 3285 | }, |
| 3286 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3287 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 3288 | 'packages': [ |
| 3289 | { |
| 3290 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3291 | 'version': 'version:27.1-jre-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3292 | }, |
| 3293 | ], |
| 3294 | 'condition': 'checkout_android', |
| 3295 | 'dep_type': 'cipd', |
| 3296 | }, |
| 3297 | |
Ben Joyce | bd0d9e5 | 2019-11-12 09:01:50 | [diff] [blame] | 3298 | 'src/third_party/android_deps/libs/com_google_guava_listenablefuture': { |
| 3299 | 'packages': [ |
| 3300 | { |
| 3301 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_listenablefuture', |
| 3302 | 'version': 'version:1.0-cr0', |
| 3303 | }, |
| 3304 | ], |
| 3305 | 'condition': 'checkout_android', |
| 3306 | 'dep_type': 'cipd', |
| 3307 | }, |
| 3308 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3309 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 3310 | 'packages': [ |
| 3311 | { |
| 3312 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 3313 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3314 | }, |
| 3315 | ], |
| 3316 | 'condition': 'checkout_android', |
| 3317 | 'dep_type': 'cipd', |
| 3318 | }, |
| 3319 | |
Andrew Grieve | bddebf7 | 2019-11-25 17:59:10 | [diff] [blame] | 3320 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_java': { |
| 3321 | 'packages': [ |
| 3322 | { |
| 3323 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_java', |
| 3324 | 'version': 'version:3.4.0-cr0', |
| 3325 | }, |
| 3326 | ], |
| 3327 | 'condition': 'checkout_android', |
| 3328 | 'dep_type': 'cipd', |
| 3329 | }, |
| 3330 | |
Mohamed Heikal | 0221b0c | 2020-03-06 02:48:50 | [diff] [blame] | 3331 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_javalite': { |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 3332 | 'packages': [ |
| 3333 | { |
Mohamed Heikal | 0221b0c | 2020-03-06 02:48:50 | [diff] [blame] | 3334 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_javalite', |
Mohamed Heikal | e278e9a | 2020-06-05 17:38:47 | [diff] [blame] | 3335 | 'version': 'version:3.12.2-cr0', |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 3336 | }, |
| 3337 | ], |
| 3338 | 'condition': 'checkout_android', |
| 3339 | 'dep_type': 'cipd', |
| 3340 | }, |
| 3341 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3342 | 'src/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils': { |
| 3343 | 'packages': [ |
| 3344 | { |
| 3345 | 'package': 'chromium/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils', |
| 3346 | 'version': 'version:1.3.0-cr0', |
| 3347 | }, |
| 3348 | ], |
| 3349 | 'condition': 'checkout_android', |
| 3350 | 'dep_type': 'cipd', |
| 3351 | }, |
| 3352 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3353 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 3354 | 'packages': [ |
| 3355 | { |
| 3356 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3357 | 'version': 'version:1.11.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3358 | }, |
| 3359 | ], |
| 3360 | 'condition': 'checkout_android', |
| 3361 | 'dep_type': 'cipd', |
| 3362 | }, |
| 3363 | |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 3364 | 'src/third_party/android_deps/libs/com_squareup_javawriter': { |
| 3365 | 'packages': [ |
| 3366 | { |
| 3367 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javawriter', |
| 3368 | 'version': 'version:2.1.1-cr0', |
| 3369 | }, |
| 3370 | ], |
| 3371 | 'condition': 'checkout_android', |
| 3372 | 'dep_type': 'cipd', |
| 3373 | }, |
| 3374 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3375 | 'src/third_party/android_deps/libs/commons_cli_commons_cli': { |
| 3376 | 'packages': [ |
| 3377 | { |
| 3378 | 'package': 'chromium/third_party/android_deps/libs/commons_cli_commons_cli', |
| 3379 | 'version': 'version:1.3.1-cr0', |
| 3380 | }, |
| 3381 | ], |
| 3382 | 'condition': 'checkout_android', |
| 3383 | 'dep_type': 'cipd', |
| 3384 | }, |
| 3385 | |
Ben Joyce | 18c0132 | 2020-01-03 23:07:59 | [diff] [blame] | 3386 | 'src/third_party/android_deps/libs/javax_annotation_javax_annotation_api': { |
| 3387 | 'packages': [ |
| 3388 | { |
| 3389 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_javax_annotation_api', |
| 3390 | 'version': 'version:1.3.2-cr0', |
| 3391 | }, |
| 3392 | ], |
| 3393 | 'condition': 'checkout_android', |
| 3394 | 'dep_type': 'cipd', |
| 3395 | }, |
| 3396 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3397 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 3398 | 'packages': [ |
| 3399 | { |
| 3400 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 3401 | 'version': 'version:1.0-cr0', |
| 3402 | }, |
| 3403 | ], |
| 3404 | 'condition': 'checkout_android', |
| 3405 | 'dep_type': 'cipd', |
| 3406 | }, |
| 3407 | |
| 3408 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3409 | 'packages': [ |
| 3410 | { |
| 3411 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 3412 | 'version': 'version:1-cr0', |
| 3413 | }, |
| 3414 | ], |
| 3415 | 'condition': 'checkout_android', |
| 3416 | 'dep_type': 'cipd', |
| 3417 | }, |
| 3418 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 3419 | 'src/third_party/android_deps/libs/nekohtml_nekohtml': { |
| 3420 | 'packages': [ |
| 3421 | { |
| 3422 | 'package': 'chromium/third_party/android_deps/libs/nekohtml_nekohtml', |
| 3423 | 'version': 'version:1.9.6.2-cr0', |
| 3424 | }, |
| 3425 | ], |
| 3426 | 'condition': 'checkout_android', |
| 3427 | 'dep_type': 'cipd', |
| 3428 | }, |
| 3429 | |
| 3430 | 'src/third_party/android_deps/libs/nekohtml_xercesMinimal': { |
| 3431 | 'packages': [ |
| 3432 | { |
| 3433 | 'package': 'chromium/third_party/android_deps/libs/nekohtml_xercesminimal', |
| 3434 | 'version': 'version:1.9.6.2-cr0', |
| 3435 | }, |
| 3436 | ], |
| 3437 | 'condition': 'checkout_android', |
| 3438 | 'dep_type': 'cipd', |
| 3439 | }, |
| 3440 | |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3441 | 'src/third_party/android_deps/libs/net_ltgt_gradle_incap_incap': { |
| 3442 | 'packages': [ |
| 3443 | { |
| 3444 | 'package': 'chromium/third_party/android_deps/libs/net_ltgt_gradle_incap_incap', |
| 3445 | 'version': 'version:0.2-cr0', |
| 3446 | }, |
| 3447 | ], |
| 3448 | 'condition': 'checkout_android', |
| 3449 | 'dep_type': 'cipd', |
| 3450 | }, |
| 3451 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 3452 | 'src/third_party/android_deps/libs/net_sf_kxml_kxml2': { |
| 3453 | 'packages': [ |
| 3454 | { |
| 3455 | 'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2', |
| 3456 | 'version': 'version:2.3.0-cr0', |
| 3457 | }, |
| 3458 | ], |
| 3459 | 'condition': 'checkout_android', |
| 3460 | 'dep_type': 'cipd', |
| 3461 | }, |
| 3462 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 3463 | 'src/third_party/android_deps/libs/org_apache_ant_ant': { |
| 3464 | 'packages': [ |
| 3465 | { |
| 3466 | 'package': 'chromium/third_party/android_deps/libs/org_apache_ant_ant', |
| 3467 | 'version': 'version:1.8.0-cr0', |
| 3468 | }, |
| 3469 | ], |
| 3470 | 'condition': 'checkout_android', |
| 3471 | 'dep_type': 'cipd', |
| 3472 | }, |
| 3473 | |
| 3474 | 'src/third_party/android_deps/libs/org_apache_ant_ant_launcher': { |
| 3475 | 'packages': [ |
| 3476 | { |
| 3477 | 'package': 'chromium/third_party/android_deps/libs/org_apache_ant_ant_launcher', |
| 3478 | 'version': 'version:1.8.0-cr0', |
| 3479 | }, |
| 3480 | ], |
| 3481 | 'condition': 'checkout_android', |
| 3482 | 'dep_type': 'cipd', |
| 3483 | }, |
| 3484 | |
| 3485 | 'src/third_party/android_deps/libs/org_apache_maven_maven_ant_tasks': { |
| 3486 | 'packages': [ |
| 3487 | { |
| 3488 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_ant_tasks', |
| 3489 | 'version': 'version:2.1.3-cr0', |
| 3490 | }, |
| 3491 | ], |
| 3492 | 'condition': 'checkout_android', |
| 3493 | 'dep_type': 'cipd', |
| 3494 | }, |
| 3495 | |
| 3496 | 'src/third_party/android_deps/libs/org_apache_maven_maven_artifact': { |
| 3497 | 'packages': [ |
| 3498 | { |
| 3499 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_artifact', |
| 3500 | 'version': 'version:2.2.1-cr0', |
| 3501 | }, |
| 3502 | ], |
| 3503 | 'condition': 'checkout_android', |
| 3504 | 'dep_type': 'cipd', |
| 3505 | }, |
| 3506 | |
| 3507 | 'src/third_party/android_deps/libs/org_apache_maven_maven_artifact_manager': { |
| 3508 | 'packages': [ |
| 3509 | { |
| 3510 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_artifact_manager', |
| 3511 | 'version': 'version:2.2.1-cr0', |
| 3512 | }, |
| 3513 | ], |
| 3514 | 'condition': 'checkout_android', |
| 3515 | 'dep_type': 'cipd', |
| 3516 | }, |
| 3517 | |
| 3518 | 'src/third_party/android_deps/libs/org_apache_maven_maven_error_diagnostics': { |
| 3519 | 'packages': [ |
| 3520 | { |
| 3521 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_error_diagnostics', |
| 3522 | 'version': 'version:2.2.1-cr0', |
| 3523 | }, |
| 3524 | ], |
| 3525 | 'condition': 'checkout_android', |
| 3526 | 'dep_type': 'cipd', |
| 3527 | }, |
| 3528 | |
| 3529 | 'src/third_party/android_deps/libs/org_apache_maven_maven_model': { |
| 3530 | 'packages': [ |
| 3531 | { |
| 3532 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_model', |
| 3533 | 'version': 'version:2.2.1-cr0', |
| 3534 | }, |
| 3535 | ], |
| 3536 | 'condition': 'checkout_android', |
| 3537 | 'dep_type': 'cipd', |
| 3538 | }, |
| 3539 | |
| 3540 | 'src/third_party/android_deps/libs/org_apache_maven_maven_plugin_registry': { |
| 3541 | 'packages': [ |
| 3542 | { |
| 3543 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_plugin_registry', |
| 3544 | 'version': 'version:2.2.1-cr0', |
| 3545 | }, |
| 3546 | ], |
| 3547 | 'condition': 'checkout_android', |
| 3548 | 'dep_type': 'cipd', |
| 3549 | }, |
| 3550 | |
| 3551 | 'src/third_party/android_deps/libs/org_apache_maven_maven_profile': { |
| 3552 | 'packages': [ |
| 3553 | { |
| 3554 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_profile', |
| 3555 | 'version': 'version:2.2.1-cr0', |
| 3556 | }, |
| 3557 | ], |
| 3558 | 'condition': 'checkout_android', |
| 3559 | 'dep_type': 'cipd', |
| 3560 | }, |
| 3561 | |
| 3562 | 'src/third_party/android_deps/libs/org_apache_maven_maven_project': { |
| 3563 | 'packages': [ |
| 3564 | { |
| 3565 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_project', |
| 3566 | 'version': 'version:2.2.1-cr0', |
| 3567 | }, |
| 3568 | ], |
| 3569 | 'condition': 'checkout_android', |
| 3570 | 'dep_type': 'cipd', |
| 3571 | }, |
| 3572 | |
| 3573 | 'src/third_party/android_deps/libs/org_apache_maven_maven_repository_metadata': { |
| 3574 | 'packages': [ |
| 3575 | { |
| 3576 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_repository_metadata', |
| 3577 | 'version': 'version:2.2.1-cr0', |
| 3578 | }, |
| 3579 | ], |
| 3580 | 'condition': 'checkout_android', |
| 3581 | 'dep_type': 'cipd', |
| 3582 | }, |
| 3583 | |
| 3584 | 'src/third_party/android_deps/libs/org_apache_maven_maven_settings': { |
| 3585 | 'packages': [ |
| 3586 | { |
| 3587 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_settings', |
| 3588 | 'version': 'version:2.2.1-cr0', |
| 3589 | }, |
| 3590 | ], |
| 3591 | 'condition': 'checkout_android', |
| 3592 | 'dep_type': 'cipd', |
| 3593 | }, |
| 3594 | |
| 3595 | 'src/third_party/android_deps/libs/org_apache_maven_wagon_wagon_file': { |
| 3596 | 'packages': [ |
| 3597 | { |
| 3598 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_file', |
| 3599 | 'version': 'version:1.0-beta-6-cr0', |
| 3600 | }, |
| 3601 | ], |
| 3602 | 'condition': 'checkout_android', |
| 3603 | 'dep_type': 'cipd', |
| 3604 | }, |
| 3605 | |
| 3606 | 'src/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_lightweight': { |
| 3607 | 'packages': [ |
| 3608 | { |
| 3609 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_lightweight', |
| 3610 | 'version': 'version:1.0-beta-6-cr0', |
| 3611 | }, |
| 3612 | ], |
| 3613 | 'condition': 'checkout_android', |
| 3614 | 'dep_type': 'cipd', |
| 3615 | }, |
| 3616 | |
| 3617 | 'src/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_shared': { |
| 3618 | 'packages': [ |
| 3619 | { |
| 3620 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_shared', |
| 3621 | 'version': 'version:1.0-beta-6-cr0', |
| 3622 | }, |
| 3623 | ], |
| 3624 | 'condition': 'checkout_android', |
| 3625 | 'dep_type': 'cipd', |
| 3626 | }, |
| 3627 | |
| 3628 | 'src/third_party/android_deps/libs/org_apache_maven_wagon_wagon_provider_api': { |
| 3629 | 'packages': [ |
| 3630 | { |
| 3631 | 'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_provider_api', |
| 3632 | 'version': 'version:1.0-beta-6-cr0', |
| 3633 | }, |
| 3634 | ], |
| 3635 | 'condition': 'checkout_android', |
| 3636 | 'dep_type': 'cipd', |
| 3637 | }, |
| 3638 | |
Ben Joyce | 3d4dd2cd | 2020-05-27 18:32:50 | [diff] [blame] | 3639 | 'src/third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup': { |
| 3640 | 'packages': [ |
| 3641 | { |
| 3642 | 'package': 'chromium/third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup', |
| 3643 | 'version': 'version:1.2.1-cr0', |
| 3644 | }, |
| 3645 | ], |
| 3646 | 'condition': 'checkout_android', |
| 3647 | 'dep_type': 'cipd', |
| 3648 | }, |
| 3649 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3650 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 3651 | 'packages': [ |
| 3652 | { |
| 3653 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3654 | 'version': 'version:2.5.3-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3655 | }, |
| 3656 | ], |
| 3657 | 'condition': 'checkout_android', |
| 3658 | 'dep_type': 'cipd', |
| 3659 | }, |
| 3660 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3661 | 'src/third_party/android_deps/libs/org_checkerframework_checker_qual': { |
| 3662 | 'packages': [ |
| 3663 | { |
| 3664 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_qual', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3665 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3666 | }, |
| 3667 | ], |
| 3668 | 'condition': 'checkout_android', |
| 3669 | 'dep_type': 'cipd', |
| 3670 | }, |
| 3671 | |
| 3672 | 'src/third_party/android_deps/libs/org_checkerframework_dataflow': { |
| 3673 | 'packages': [ |
| 3674 | { |
| 3675 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_dataflow', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3676 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3677 | }, |
| 3678 | ], |
| 3679 | 'condition': 'checkout_android', |
| 3680 | 'dep_type': 'cipd', |
| 3681 | }, |
| 3682 | |
| 3683 | 'src/third_party/android_deps/libs/org_checkerframework_javacutil': { |
| 3684 | 'packages': [ |
| 3685 | { |
| 3686 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_javacutil', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3687 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3688 | }, |
| 3689 | ], |
| 3690 | 'condition': 'checkout_android', |
| 3691 | 'dep_type': 'cipd', |
| 3692 | }, |
| 3693 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3694 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 3695 | 'packages': [ |
| 3696 | { |
| 3697 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3698 | 'version': 'version:1.17-cr0', |
| 3699 | }, |
| 3700 | ], |
| 3701 | 'condition': 'checkout_android', |
| 3702 | 'dep_type': 'cipd', |
| 3703 | }, |
| 3704 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 3705 | 'src/third_party/android_deps/libs/org_codehaus_plexus_plexus_container_default': { |
| 3706 | 'packages': [ |
| 3707 | { |
| 3708 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_container_default', |
| 3709 | 'version': 'version:1.0-alpha-9-stable-1-cr0', |
| 3710 | }, |
| 3711 | ], |
| 3712 | 'condition': 'checkout_android', |
| 3713 | 'dep_type': 'cipd', |
| 3714 | }, |
| 3715 | |
| 3716 | 'src/third_party/android_deps/libs/org_codehaus_plexus_plexus_interpolation': { |
| 3717 | 'packages': [ |
| 3718 | { |
| 3719 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_interpolation', |
| 3720 | 'version': 'version:1.11-cr0', |
| 3721 | }, |
| 3722 | ], |
| 3723 | 'condition': 'checkout_android', |
| 3724 | 'dep_type': 'cipd', |
| 3725 | }, |
| 3726 | |
| 3727 | 'src/third_party/android_deps/libs/org_codehaus_plexus_plexus_utils': { |
| 3728 | 'packages': [ |
| 3729 | { |
| 3730 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_utils', |
| 3731 | 'version': 'version:1.5.15-cr0', |
| 3732 | }, |
| 3733 | ], |
| 3734 | 'condition': 'checkout_android', |
| 3735 | 'dep_type': 'cipd', |
| 3736 | }, |
| 3737 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3738 | 'src/third_party/android_deps/libs/org_jdom_jdom2': { |
| 3739 | 'packages': [ |
| 3740 | { |
| 3741 | 'package': 'chromium/third_party/android_deps/libs/org_jdom_jdom2', |
| 3742 | 'version': 'version:2.0.6-cr0', |
| 3743 | }, |
| 3744 | ], |
| 3745 | 'condition': 'checkout_android', |
| 3746 | 'dep_type': 'cipd', |
| 3747 | }, |
| 3748 | |
Andrew Grieve | 177c82f | 2020-02-03 19:35:17 | [diff] [blame] | 3749 | 'src/third_party/android_deps/libs/org_jetbrains_annotations': { |
| 3750 | 'packages': [ |
| 3751 | { |
| 3752 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_annotations', |
| 3753 | 'version': 'version:13.0-cr0', |
| 3754 | }, |
| 3755 | ], |
| 3756 | 'condition': 'checkout_android', |
| 3757 | 'dep_type': 'cipd', |
| 3758 | }, |
| 3759 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3760 | 'src/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib': { |
| 3761 | 'packages': [ |
| 3762 | { |
| 3763 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3764 | 'version': 'version:1.3.50-cr0', |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3765 | }, |
| 3766 | ], |
| 3767 | 'condition': 'checkout_android', |
| 3768 | 'dep_type': 'cipd', |
| 3769 | }, |
| 3770 | |
| 3771 | 'src/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common': { |
| 3772 | 'packages': [ |
| 3773 | { |
| 3774 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3775 | 'version': 'version:1.3.50-cr0', |
| 3776 | }, |
| 3777 | ], |
| 3778 | 'condition': 'checkout_android', |
| 3779 | 'dep_type': 'cipd', |
| 3780 | }, |
| 3781 | |
| 3782 | 'src/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm': { |
| 3783 | 'packages': [ |
| 3784 | { |
| 3785 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm', |
| 3786 | 'version': 'version:0.1.0-cr0', |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3787 | }, |
| 3788 | ], |
| 3789 | 'condition': 'checkout_android', |
| 3790 | 'dep_type': 'cipd', |
| 3791 | }, |
| 3792 | |
Andrew Grieve | 177c82f | 2020-02-03 19:35:17 | [diff] [blame] | 3793 | 'src/third_party/android_deps/libs/org_ow2_asm_asm': { |
| 3794 | 'packages': [ |
| 3795 | { |
| 3796 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm', |
| 3797 | 'version': 'version:7.0-cr0', |
| 3798 | }, |
| 3799 | ], |
| 3800 | 'condition': 'checkout_android', |
| 3801 | 'dep_type': 'cipd', |
| 3802 | }, |
| 3803 | |
| 3804 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_analysis': { |
| 3805 | 'packages': [ |
| 3806 | { |
| 3807 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_analysis', |
| 3808 | 'version': 'version:7.0-cr0', |
| 3809 | }, |
| 3810 | ], |
| 3811 | 'condition': 'checkout_android', |
| 3812 | 'dep_type': 'cipd', |
| 3813 | }, |
| 3814 | |
| 3815 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_commons': { |
| 3816 | 'packages': [ |
| 3817 | { |
| 3818 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_commons', |
| 3819 | 'version': 'version:7.0-cr0', |
| 3820 | }, |
| 3821 | ], |
| 3822 | 'condition': 'checkout_android', |
| 3823 | 'dep_type': 'cipd', |
| 3824 | }, |
| 3825 | |
| 3826 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_tree': { |
| 3827 | 'packages': [ |
| 3828 | { |
| 3829 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_tree', |
| 3830 | 'version': 'version:7.0-cr0', |
| 3831 | }, |
| 3832 | ], |
| 3833 | 'condition': 'checkout_android', |
| 3834 | 'dep_type': 'cipd', |
| 3835 | }, |
| 3836 | |
| 3837 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_util': { |
| 3838 | 'packages': [ |
| 3839 | { |
| 3840 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_util', |
| 3841 | 'version': 'version:7.0-cr0', |
| 3842 | }, |
| 3843 | ], |
| 3844 | 'condition': 'checkout_android', |
| 3845 | 'dep_type': 'cipd', |
| 3846 | }, |
| 3847 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3848 | 'src/third_party/android_deps/libs/org_pcollections_pcollections': { |
| 3849 | 'packages': [ |
| 3850 | { |
| 3851 | 'package': 'chromium/third_party/android_deps/libs/org_pcollections_pcollections', |
| 3852 | 'version': 'version:2.1.2-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3853 | }, |
| 3854 | ], |
| 3855 | 'condition': 'checkout_android', |
| 3856 | 'dep_type': 'cipd', |
| 3857 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3858 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3859 | 'src/third_party/android_deps/libs/org_plumelib_plume_util': { |
| 3860 | 'packages': [ |
| 3861 | { |
| 3862 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_plume_util', |
| 3863 | 'version': 'version:1.0.6-cr0', |
| 3864 | }, |
| 3865 | ], |
| 3866 | 'condition': 'checkout_android', |
| 3867 | 'dep_type': 'cipd', |
| 3868 | }, |
| 3869 | |
| 3870 | 'src/third_party/android_deps/libs/org_plumelib_reflection_util': { |
| 3871 | 'packages': [ |
| 3872 | { |
| 3873 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_reflection_util', |
| 3874 | 'version': 'version:0.0.2-cr0', |
| 3875 | }, |
| 3876 | ], |
| 3877 | 'condition': 'checkout_android', |
| 3878 | 'dep_type': 'cipd', |
| 3879 | }, |
| 3880 | |
| 3881 | 'src/third_party/android_deps/libs/org_plumelib_require_javadoc': { |
| 3882 | 'packages': [ |
| 3883 | { |
| 3884 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_require_javadoc', |
| 3885 | 'version': 'version:0.1.0-cr0', |
| 3886 | }, |
| 3887 | ], |
| 3888 | 'condition': 'checkout_android', |
| 3889 | 'dep_type': 'cipd', |
| 3890 | }, |
| 3891 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 3892 | 'src/third_party/android_deps/libs/org_robolectric_annotations': { |
| 3893 | 'packages': [ |
| 3894 | { |
| 3895 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_annotations', |
| 3896 | 'version': 'version:4.3.1-cr0', |
| 3897 | }, |
| 3898 | ], |
| 3899 | 'condition': 'checkout_android', |
| 3900 | 'dep_type': 'cipd', |
| 3901 | }, |
| 3902 | |
| 3903 | 'src/third_party/android_deps/libs/org_robolectric_junit': { |
| 3904 | 'packages': [ |
| 3905 | { |
| 3906 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_junit', |
| 3907 | 'version': 'version:4.3.1-cr0', |
| 3908 | }, |
| 3909 | ], |
| 3910 | 'condition': 'checkout_android', |
| 3911 | 'dep_type': 'cipd', |
| 3912 | }, |
| 3913 | |
| 3914 | 'src/third_party/android_deps/libs/org_robolectric_pluginapi': { |
| 3915 | 'packages': [ |
| 3916 | { |
| 3917 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_pluginapi', |
| 3918 | 'version': 'version:4.3.1-cr0', |
| 3919 | }, |
| 3920 | ], |
| 3921 | 'condition': 'checkout_android', |
| 3922 | 'dep_type': 'cipd', |
| 3923 | }, |
| 3924 | |
| 3925 | 'src/third_party/android_deps/libs/org_robolectric_plugins_maven_dependency_resolver': { |
| 3926 | 'packages': [ |
| 3927 | { |
| 3928 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_plugins_maven_dependency_resolver', |
| 3929 | 'version': 'version:4.3.1-cr0', |
| 3930 | }, |
| 3931 | ], |
| 3932 | 'condition': 'checkout_android', |
| 3933 | 'dep_type': 'cipd', |
| 3934 | }, |
| 3935 | |
| 3936 | 'src/third_party/android_deps/libs/org_robolectric_resources': { |
| 3937 | 'packages': [ |
| 3938 | { |
| 3939 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_resources', |
| 3940 | 'version': 'version:4.3.1-cr0', |
| 3941 | }, |
| 3942 | ], |
| 3943 | 'condition': 'checkout_android', |
| 3944 | 'dep_type': 'cipd', |
| 3945 | }, |
| 3946 | |
| 3947 | 'src/third_party/android_deps/libs/org_robolectric_robolectric': { |
| 3948 | 'packages': [ |
| 3949 | { |
| 3950 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_robolectric', |
| 3951 | 'version': 'version:4.3.1-cr0', |
| 3952 | }, |
| 3953 | ], |
| 3954 | 'condition': 'checkout_android', |
| 3955 | 'dep_type': 'cipd', |
| 3956 | }, |
| 3957 | |
| 3958 | 'src/third_party/android_deps/libs/org_robolectric_sandbox': { |
| 3959 | 'packages': [ |
| 3960 | { |
| 3961 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_sandbox', |
| 3962 | 'version': 'version:4.3.1-cr0', |
| 3963 | }, |
| 3964 | ], |
| 3965 | 'condition': 'checkout_android', |
| 3966 | 'dep_type': 'cipd', |
| 3967 | }, |
| 3968 | |
| 3969 | 'src/third_party/android_deps/libs/org_robolectric_shadowapi': { |
| 3970 | 'packages': [ |
| 3971 | { |
| 3972 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadowapi', |
| 3973 | 'version': 'version:4.3.1-cr0', |
| 3974 | }, |
| 3975 | ], |
| 3976 | 'condition': 'checkout_android', |
| 3977 | 'dep_type': 'cipd', |
| 3978 | }, |
| 3979 | |
| 3980 | 'src/third_party/android_deps/libs/org_robolectric_shadows_framework': { |
| 3981 | 'packages': [ |
| 3982 | { |
| 3983 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadows_framework', |
| 3984 | 'version': 'version:4.3.1-cr0', |
| 3985 | }, |
| 3986 | ], |
| 3987 | 'condition': 'checkout_android', |
| 3988 | 'dep_type': 'cipd', |
| 3989 | }, |
| 3990 | |
Ben Joyce | 2ab6767 | 2020-05-25 23:09:01 | [diff] [blame] | 3991 | 'src/third_party/android_deps/libs/org_robolectric_shadows_multidex': { |
| 3992 | 'packages': [ |
| 3993 | { |
| 3994 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadows_multidex', |
Andrew Grieve | 064c624 | 2020-06-09 19:57:57 | [diff] [blame] | 3995 | 'version': 'version:4.3.1-cr1', |
Ben Joyce | 2ab6767 | 2020-05-25 23:09:01 | [diff] [blame] | 3996 | }, |
| 3997 | ], |
| 3998 | 'condition': 'checkout_android', |
| 3999 | 'dep_type': 'cipd', |
| 4000 | }, |
| 4001 | |
| 4002 | 'src/third_party/android_deps/libs/org_robolectric_shadows_playservices': { |
| 4003 | 'packages': [ |
| 4004 | { |
| 4005 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadows_playservices', |
| 4006 | 'version': 'version:4.3.1-cr0', |
| 4007 | }, |
| 4008 | ], |
| 4009 | 'condition': 'checkout_android', |
| 4010 | 'dep_type': 'cipd', |
| 4011 | }, |
| 4012 | |
Ben Joyce | 157038a | 2020-05-06 20:13:06 | [diff] [blame] | 4013 | 'src/third_party/android_deps/libs/org_robolectric_utils': { |
| 4014 | 'packages': [ |
| 4015 | { |
| 4016 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_utils', |
| 4017 | 'version': 'version:4.3.1-cr0', |
| 4018 | }, |
| 4019 | ], |
| 4020 | 'condition': 'checkout_android', |
| 4021 | 'dep_type': 'cipd', |
| 4022 | }, |
| 4023 | |
| 4024 | 'src/third_party/android_deps/libs/org_robolectric_utils_reflector': { |
| 4025 | 'packages': [ |
| 4026 | { |
| 4027 | 'package': 'chromium/third_party/android_deps/libs/org_robolectric_utils_reflector', |
| 4028 | 'version': 'version:4.3.1-cr0', |
| 4029 | }, |
| 4030 | ], |
| 4031 | 'condition': 'checkout_android', |
| 4032 | 'dep_type': 'cipd', |
| 4033 | }, |
| 4034 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 4035 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 4036 | } |
| 4037 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 4038 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 4039 | include_rules = [ |
| 4040 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 4041 | # 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] | 4042 | '+base', |
| 4043 | '+build', |
| 4044 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 4045 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 4046 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4047 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 4048 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4049 | '+testing', |
| 4050 | '+third_party/icu/source/common/unicode', |
| 4051 | '+third_party/icu/source/i18n/unicode', |
| 4052 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 4053 | |
| 4054 | # Chromium cannot directly depend on Abseil. |
| 4055 | '-absl', |
Amr Aboelkher | 080bbab | 2020-04-08 20:46:44 | [diff] [blame] | 4056 | |
| 4057 | # Chromium cannot directly depend on SHELL. |
| 4058 | '-shell-encryption', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 4059 | ] |
| 4060 | |
| 4061 | |
| 4062 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 4063 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4064 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 4065 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4066 | 'skia', |
| 4067 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 4068 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4069 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 4070 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 4071 | |
| 4072 | |
| 4073 | hooks = [ |
| 4074 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 4075 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 4076 | # first hook so that other things that get/generate into the output |
| 4077 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4078 | 'name': 'landmines', |
| 4079 | 'pattern': '.', |
| 4080 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4081 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4082 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 4083 | ], |
| 4084 | }, |
| 4085 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 4086 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 4087 | # disabled. |
| 4088 | 'name': 'disable_depot_tools_selfupdate', |
| 4089 | 'pattern': '.', |
| 4090 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4091 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 4092 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 4093 | '--disable', |
| 4094 | ], |
| 4095 | }, |
| 4096 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 4097 | # Ensure that we don't accidentally reference any .pyc files whose |
| 4098 | # corresponding .py files have since been deleted. |
| 4099 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 4100 | 'name': 'remove_stale_pyc_files', |
| 4101 | 'pattern': '.', |
| 4102 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4103 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 4104 | 'src/tools/remove_stale_pyc_files.py', |
| 4105 | 'src/android_webview/tools', |
| 4106 | 'src/build/android', |
| 4107 | 'src/gpu/gles2_conform_support', |
| 4108 | 'src/infra', |
| 4109 | 'src/ppapi', |
| 4110 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 4111 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 4112 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 4113 | 'src/third_party/catapult', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 4114 | 'src/tools', |
| 4115 | ], |
| 4116 | }, |
| 4117 | { |
Dirk Pranke | cbff2fc | 2019-03-22 21:53:44 | [diff] [blame] | 4118 | # Verify that we have the right GN binary and force-install it if we |
| 4119 | # don't, in order to work around crbug.com/944367. |
| 4120 | # TODO(crbug.com/944667) Get rid of this when cipd is ensuring we |
| 4121 | # have the right binary more carefully and we no longer need this. |
| 4122 | 'name': 'ensure_gn_version', |
| 4123 | 'pattern': '.', |
| 4124 | 'action': [ |
| 4125 | 'python', |
| 4126 | 'src/buildtools/ensure_gn_version.py', |
| 4127 | Var('gn_version') |
| 4128 | ], |
| 4129 | }, |
| 4130 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 4131 | # This downloads binaries for Native Client's newlib toolchain. |
| 4132 | # Done in lieu of building the toolchain from scratch as it can take |
| 4133 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4134 | 'name': 'nacltools', |
| 4135 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 4136 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4137 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4138 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 4139 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 4140 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 4141 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 4142 | ], |
| 4143 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 4144 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 4145 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4146 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 4147 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4148 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 4149 | '--arch=arm'], |
| 4150 | }, |
| 4151 | { |
| 4152 | 'name': 'sysroot_arm64', |
| 4153 | 'pattern': '.', |
| 4154 | 'condition': 'checkout_linux and checkout_arm64', |
| 4155 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 4156 | '--arch=arm64'], |
| 4157 | }, |
| 4158 | { |
| 4159 | 'name': 'sysroot_x86', |
| 4160 | 'pattern': '.', |
| 4161 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 4162 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 4163 | '--arch=x86'], |
| 4164 | }, |
| 4165 | { |
| 4166 | 'name': 'sysroot_mips', |
| 4167 | 'pattern': '.', |
| 4168 | 'condition': 'checkout_linux and checkout_mips', |
| 4169 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 4170 | '--arch=mips'], |
| 4171 | }, |
| 4172 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 4173 | 'name': 'sysroot_mips64', |
| 4174 | 'pattern': '.', |
| 4175 | 'condition': 'checkout_linux and checkout_mips64', |
| 4176 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 4177 | '--arch=mips64el'], |
| 4178 | }, |
| 4179 | |
| 4180 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 4181 | 'name': 'sysroot_x64', |
| 4182 | 'pattern': '.', |
| 4183 | 'condition': 'checkout_linux and checkout_x64', |
| 4184 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 4185 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 4186 | }, |
| 4187 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 4188 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 4189 | 'name': 'ciopfs_linux', |
| 4190 | 'pattern': '.', |
| 4191 | 'condition': 'checkout_win and host_os == "linux"', |
| 4192 | 'action': [ 'python', |
| 4193 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4194 | '--no_resume', |
| 4195 | '--no_auth', |
| 4196 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 4197 | '-s', 'src/build/ciopfs.sha1', |
| 4198 | ] |
| 4199 | }, |
| 4200 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 4201 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4202 | 'name': 'win_toolchain', |
| 4203 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 4204 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4205 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 4206 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 4207 | { |
| 4208 | # Update the Mac toolchain if necessary. |
| 4209 | 'name': 'mac_toolchain', |
| 4210 | 'pattern': '.', |
Michael Achenbach | 0c78efa | 2019-07-30 20:00:02 | [diff] [blame] | 4211 | 'condition': 'checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 4212 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 4213 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 4214 | { |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 4215 | # Update the prebuilt clang toolchain. |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 4216 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 4217 | 'name': 'clang', |
| 4218 | 'pattern': '.', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 4219 | 'condition': 'not llvm_force_head_revision', |
| 4220 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
| 4221 | }, |
| 4222 | { |
| 4223 | # Build the clang toolchain from tip-of-tree. |
| 4224 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 4225 | 'name': 'clang_tot', |
| 4226 | 'pattern': '.', |
| 4227 | 'condition': 'llvm_force_head_revision', |
Hans Wennborg | d1eec55 | 2019-05-02 14:59:07 | [diff] [blame] | 4228 | 'action': ['python', 'src/tools/clang/scripts/build.py', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 4229 | '--llvm-force-head-revision', |
| 4230 | '--with-android={checkout_android}'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 4231 | }, |
| 4232 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 4233 | # This is supposed to support the same set of platforms as 'clang' above. |
| 4234 | 'name': 'clang_coverage', |
| 4235 | 'pattern': '.', |
| 4236 | 'condition': 'checkout_clang_coverage_tools', |
Hans Wennborg | 8ee64a1 | 2019-11-05 17:31:30 | [diff] [blame] | 4237 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 4238 | '--package=coverage_tools'], |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 4239 | }, |
| 4240 | { |
George Burgess IV | a55e6bed | 2019-12-11 16:24:08 | [diff] [blame] | 4241 | # This is also supposed to support the same set of platforms as 'clang' |
| 4242 | # above. LLVM ToT support isn't provided at the moment. |
| 4243 | 'name': 'clang_tidy', |
| 4244 | 'pattern': '.', |
| 4245 | 'condition': 'checkout_clang_tidy', |
| 4246 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 4247 | '--package=clang-tidy'], |
| 4248 | }, |
| 4249 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 4250 | # 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] | 4251 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 4252 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 4253 | 'name': 'lld/mac', |
| 4254 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 4255 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Hans Wennborg | 8ee64a1 | 2019-11-05 17:31:30 | [diff] [blame] | 4256 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 4257 | '--package=lld_mac'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 4258 | }, |
| 4259 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 4260 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4261 | 'name': 'lastchange', |
| 4262 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4263 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4264 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 4265 | }, |
| 4266 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 4267 | # Update GPU lists version string (for gpu/config). |
| 4268 | 'name': 'gpu_lists_version', |
| 4269 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4270 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 4271 | '-m', 'GPU_LISTS_VERSION', |
| 4272 | '--revision-id-only', |
| 4273 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 4274 | }, |
| 4275 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 4276 | # Update skia_commit_hash.h. |
| 4277 | 'name': 'lastchange_skia', |
| 4278 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4279 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 4280 | '-m', 'SKIA_COMMIT_HASH', |
| 4281 | '-s', 'src/third_party/skia', |
| 4282 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 4283 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 4284 | # Pull clang-format binaries using checked-in hashes. |
| 4285 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4286 | 'name': 'clang_format_win', |
| 4287 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4288 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4289 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4290 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4291 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4292 | '--no_auth', |
| 4293 | '--bucket', 'chromium-clang-format', |
| 4294 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 4295 | ], |
| 4296 | }, |
| 4297 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4298 | 'name': 'clang_format_mac', |
| 4299 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4300 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4301 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4302 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4303 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4304 | '--no_auth', |
| 4305 | '--bucket', 'chromium-clang-format', |
| 4306 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 4307 | ], |
| 4308 | }, |
| 4309 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4310 | 'name': 'clang_format_linux', |
| 4311 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4312 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4313 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4314 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4315 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4316 | '--no_auth', |
| 4317 | '--bucket', 'chromium-clang-format', |
| 4318 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 4319 | ], |
| 4320 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 4321 | # Pull rc binaries using checked-in hashes. |
| 4322 | { |
| 4323 | 'name': 'rc_win', |
| 4324 | 'pattern': '.', |
| 4325 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4326 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 4327 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4328 | '--no_resume', |
| 4329 | '--no_auth', |
| 4330 | '--bucket', 'chromium-browser-clang/rc', |
| 4331 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 4332 | ], |
| 4333 | }, |
| 4334 | { |
| 4335 | 'name': 'rc_mac', |
| 4336 | 'pattern': '.', |
| 4337 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4338 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 4339 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4340 | '--no_resume', |
| 4341 | '--no_auth', |
| 4342 | '--bucket', 'chromium-browser-clang/rc', |
| 4343 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 4344 | ], |
| 4345 | }, |
| 4346 | { |
| 4347 | 'name': 'rc_linux', |
| 4348 | 'pattern': '.', |
| 4349 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4350 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 4351 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4352 | '--no_resume', |
| 4353 | '--no_auth', |
| 4354 | '--bucket', 'chromium-browser-clang/rc', |
| 4355 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 4356 | ] |
| 4357 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 4358 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 4359 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 4360 | 'pattern': '.', |
| 4361 | 'action': [ 'download_from_google_storage', |
| 4362 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 4363 | '--extract', |
| 4364 | '--no_auth', |
| 4365 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 4366 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 4367 | ], |
| 4368 | }, |
Yves Gerey | 0e064c4c | 2019-11-06 14:42:09 | [diff] [blame] | 4369 | # Download test resources for opus, i.e. audio files. |
| 4370 | { |
| 4371 | 'name': 'opus_test_files', |
| 4372 | 'pattern': '.', |
| 4373 | 'action': ['download_from_google_storage', |
| 4374 | '--no_auth', |
| 4375 | '--quiet', |
| 4376 | '--bucket', 'chromium-webrtc-resources', |
| 4377 | '-d', 'src/third_party/opus/tests/resources'], |
| 4378 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 4379 | # Pull order files for the win/clang build. |
| 4380 | { |
| 4381 | 'name': 'orderfiles_win', |
| 4382 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 4383 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4384 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 4385 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4386 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 4387 | '--no_auth', |
Nico Weber | be2fc4f | 2019-05-03 13:36:05 | [diff] [blame] | 4388 | '--num_threads=4', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 4389 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 4390 | '-d', 'src/chrome/build', |
| 4391 | ], |
| 4392 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 4393 | { |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 4394 | 'name': 'apache_mac', |
| 4395 | 'pattern': '\\.sha1', |
| 4396 | 'condition': 'checkout_mac', |
| 4397 | 'action': [ 'python', |
| 4398 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4399 | '--no_resume', |
| 4400 | '--directory', |
| 4401 | '--recursive', |
| 4402 | '--no_auth', |
| 4403 | '--num_threads=16', |
| 4404 | '--bucket', 'chromium-apache-mac', |
| 4405 | 'src/third_party/apache-mac', |
| 4406 | ], |
| 4407 | }, |
| 4408 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4409 | 'name': 'apache_win32', |
| 4410 | 'pattern': '\\.sha1', |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 4411 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4412 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4413 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4414 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 4415 | '--directory', |
| 4416 | '--recursive', |
| 4417 | '--no_auth', |
| 4418 | '--num_threads=16', |
| 4419 | '--bucket', 'chromium-apache-win32', |
| 4420 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 4421 | ], |
| 4422 | }, |
| 4423 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 4424 | 'name': 'msan_chained_origins', |
| 4425 | 'pattern': '.', |
| 4426 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4427 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 4428 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4429 | '--no_resume', |
| 4430 | '--no_auth', |
| 4431 | '--bucket', 'chromium-instrumented-libraries', |
| 4432 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 4433 | ], |
| 4434 | }, |
| 4435 | { |
| 4436 | 'name': 'msan_no_origins', |
| 4437 | 'pattern': '.', |
| 4438 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4439 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 4440 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4441 | '--no_resume', |
| 4442 | '--no_auth', |
| 4443 | '--bucket', 'chromium-instrumented-libraries', |
| 4444 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 4445 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 4446 | }, |
| 4447 | { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4448 | 'name': 'wasm_fuzzer', |
| 4449 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4450 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4451 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4452 | '--no_resume', |
| 4453 | '--no_auth', |
| 4454 | '-u', |
| 4455 | '--bucket', 'v8-wasm-fuzzer', |
| 4456 | '-s', 'src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 4457 | ], |
| 4458 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4459 | |
| 4460 | # Pull down Node binaries for WebUI toolchain. |
| 4461 | { |
| 4462 | 'name': 'node_linux64', |
| 4463 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4464 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4465 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4466 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4467 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4468 | '--extract', |
| 4469 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 4470 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4471 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 4472 | ], |
| 4473 | }, |
| 4474 | { |
| 4475 | 'name': 'node_mac', |
| 4476 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4477 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4478 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4479 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4480 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4481 | '--extract', |
| 4482 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 4483 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4484 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 4485 | ], |
| 4486 | }, |
| 4487 | { |
| 4488 | 'name': 'node_win', |
| 4489 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 4490 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4491 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4492 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4493 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4494 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 4495 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4496 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 4497 | ], |
| 4498 | }, |
| 4499 | |
| 4500 | # Pull down NPM dependencies for WebUI toolchain. |
| 4501 | { |
| 4502 | 'name': 'webui_node_modules', |
| 4503 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4504 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 4505 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 4506 | '--no_resume', |
| 4507 | '--extract', |
| 4508 | '--no_auth', |
| 4509 | '--bucket', 'chromium-nodejs', |
| 4510 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 4511 | ], |
| 4512 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 4513 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4514 | # Download Telemetry's binary dependencies via conditionals |
| 4515 | { |
| 4516 | 'name': 'checkout_telemetry_binary_dependencies', |
| 4517 | 'condition': 'checkout_telemetry_dependencies', |
| 4518 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4519 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4520 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 4521 | ], |
| 4522 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 4523 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 4524 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 4525 | { |
| 4526 | 'name': 'checkout_telemetry_benchmark_deps', |
| 4527 | 'condition': 'checkout_telemetry_dependencies', |
| 4528 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 4529 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 4530 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 4531 | '-f', |
| 4532 | ], |
| 4533 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4534 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4535 | # This is used to ensure that all network operations are properly |
| 4536 | # annotated so we can document what they're for. |
| 4537 | { |
| 4538 | 'name': 'tools_traffic_annotation_linux', |
| 4539 | 'pattern': '.', |
| 4540 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4541 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4542 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4543 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4544 | '--no_auth', |
| 4545 | '--num_threads=4', |
| 4546 | '--bucket', 'chromium-tools-traffic_annotation', |
| 4547 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 4548 | ], |
| 4549 | }, |
| 4550 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 4551 | # This is used to ensure that all network operations are properly |
| 4552 | # annotated so we can document what they're for. |
| 4553 | { |
| 4554 | 'name': 'tools_traffic_annotation_windows', |
| 4555 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 4556 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4557 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 4558 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4559 | '--no_resume', |
| 4560 | '--no_auth', |
| 4561 | '--num_threads=4', |
| 4562 | '--bucket', 'chromium-tools-traffic_annotation', |
| 4563 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 4564 | ], |
| 4565 | }, |
| 4566 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4567 | # Pull down Zucchini test data. |
| 4568 | { |
| 4569 | 'name': 'zucchini_testdata', |
| 4570 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4571 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4572 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4573 | '--no_resume', |
| 4574 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 4575 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 4576 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 4577 | '--recursive', |
| 4578 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4579 | ], |
| 4580 | }, |
bsheedy | 7fbd0a5 | 2019-02-05 19:03:36 | [diff] [blame] | 4581 | # Pull down Android RenderTest goldens |
| 4582 | { |
| 4583 | 'name': 'Fetch Android RenderTest goldens', |
| 4584 | 'pattern': '.', |
| 4585 | 'condition': 'checkout_android', |
| 4586 | 'action': [ 'python', |
| 4587 | 'src/chrome/test/data/android/manage_render_test_goldens.py', |
| 4588 | 'download', |
| 4589 | ], |
| 4590 | }, |
Arthur Wang | 95d62d4 | 2020-06-03 04:53:25 | [diff] [blame] | 4591 | # Pull down WPR Archive files |
| 4592 | { |
| 4593 | 'name': 'Fetch WPR archive files', |
| 4594 | 'pattern': '.', |
| 4595 | 'condition': 'checkout_android and (checkout_wpr_archives or checkout_src_internal)', |
| 4596 | 'action': [ 'python', |
| 4597 | 'src/chrome/test/data/android/manage_wpr_archives.py', |
| 4598 | 'download', |
| 4599 | ], |
| 4600 | }, |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 4601 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 4602 | 'name': 'Fetch Android AFDO profile', |
| 4603 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 4604 | 'condition': 'checkout_android or checkout_linux', |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4605 | 'action': [ 'vpython', |
Yuke Liao | 001b62a5 | 2020-04-22 01:23:11 | [diff] [blame] | 4606 | 'src/tools/download_optimization_profile.py', |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4607 | '--newest_state=src/chrome/android/profiles/newest.txt', |
| 4608 | '--local_state=src/chrome/android/profiles/local.txt', |
| 4609 | '--output_name=src/chrome/android/profiles/afdo.prof', |
| 4610 | '--gs_url_base=chromeos-prebuilt/afdo-job/llvm', |
| 4611 | ], |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 4612 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4613 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4614 | 'name': 'gvr_static_shim_android_arm_1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4615 | 'pattern': '\\.sha1', |
| 4616 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4617 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4618 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4619 | '--no_resume', |
| 4620 | '--no_auth', |
| 4621 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4622 | '-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] | 4623 | ], |
| 4624 | }, |
| 4625 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4626 | 'name': 'gvr_static_shim_android_arm_Cr', |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 4627 | 'pattern': '\\.sha1', |
| 4628 | 'condition': 'checkout_android', |
| 4629 | 'action': [ 'python', |
| 4630 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4631 | '--no_resume', |
| 4632 | '--no_auth', |
| 4633 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4634 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_Cr.a.sha1', |
| 4635 | ], |
| 4636 | }, |
| 4637 | { |
| 4638 | 'name': 'gvr_static_shim_android_arm64_1', |
| 4639 | 'pattern': '\\.sha1', |
| 4640 | 'condition': 'checkout_android', |
| 4641 | 'action': [ 'python', |
| 4642 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4643 | '--no_resume', |
| 4644 | '--no_auth', |
| 4645 | '--bucket', 'chromium-gvr-static-shim', |
| 4646 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_1.a.sha1', |
| 4647 | ], |
| 4648 | }, |
| 4649 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4650 | 'name': 'gvr_static_shim_android_arm64_Cr', |
| 4651 | 'pattern': '\\.sha1', |
| 4652 | 'condition': 'checkout_android', |
| 4653 | 'action': [ 'python', |
| 4654 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4655 | '--no_resume', |
| 4656 | '--no_auth', |
| 4657 | '--bucket', 'chromium-gvr-static-shim', |
| 4658 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_Cr.a.sha1', |
| 4659 | ], |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 4660 | }, |
| 4661 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4662 | 'name': 'vr_controller_test_api', |
| 4663 | 'pattern': '\\.sha1', |
| 4664 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4665 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4666 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4667 | '--no_resume', |
| 4668 | '--no_auth', |
| 4669 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 4670 | '-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] | 4671 | ], |
| 4672 | }, |
| 4673 | # Download VR test APKs only if the environment variable is set |
| 4674 | { |
| 4675 | 'name': 'vr_test_apks', |
| 4676 | 'pattern': '.', |
| 4677 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4678 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 4679 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4680 | ], |
| 4681 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 4682 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 4683 | { |
| 4684 | 'name': 'ar_test_apks', |
| 4685 | 'pattern': '.', |
| 4686 | 'condition': 'checkout_android', |
| 4687 | 'action': [ 'python', |
| 4688 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 4689 | ], |
| 4690 | }, |
Mehran Mahmoudi | 7759ba4 | 2020-03-09 15:45:15 | [diff] [blame] | 4691 | # Pull down Paint Preview test data. |
| 4692 | { |
| 4693 | 'name': 'paint_preview_testdata', |
| 4694 | 'pattern': '\\.sha1', |
| 4695 | 'condition': 'checkout_android', |
| 4696 | 'action': [ 'python', |
| 4697 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4698 | '--no_auth', |
| 4699 | '--num_threads=4', |
| 4700 | '--bucket', 'chromium-android-tools/paint-preview-test-data', |
| 4701 | '--recursive', |
| 4702 | '-d', 'src/components/test/data/paint_preview', |
| 4703 | ], |
| 4704 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 4705 | # Download Oculus SDK if appropriate. |
| 4706 | { |
| 4707 | 'name': 'libovr', |
| 4708 | 'pattern': '.', |
| 4709 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4710 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 4711 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4712 | '--bucket', 'chrome-oculus-sdk', |
| 4713 | '--recursive', |
| 4714 | '--num_threads=10', |
| 4715 | '--directory', |
| 4716 | 'src/third_party/libovr/src', |
| 4717 | ], |
| 4718 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 4719 | # Download common ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 4720 | { |
| 4721 | 'name': 'ink-build', |
| 4722 | 'pattern': '.', |
| 4723 | 'condition': 'checkout_chromeos', |
| 4724 | 'action': [ 'python', |
| 4725 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4726 | '--no_resume', |
| 4727 | '--no_auth', |
| 4728 | '--num_threads=4', |
| 4729 | '--bucket', 'chromium-ink', |
| 4730 | '-d', 'src/third_party/ink/build', |
| 4731 | ], |
| 4732 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4733 | { |
Alex Turner | 1845317 | 2019-12-12 21:05:43 | [diff] [blame] | 4734 | 'name': 'subresource-filter-ruleset', |
| 4735 | 'pattern': '.', |
| 4736 | 'action': [ 'python', |
| 4737 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4738 | '--no_resume', |
| 4739 | '--no_auth', |
| 4740 | '--bucket', 'chromium-ads-detection', |
| 4741 | '-s', 'src/third_party/subresource-filter-ruleset/data/UnindexedRules.sha1', |
| 4742 | ], |
| 4743 | }, |
| 4744 | { |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4745 | 'name': 'Fetch ChromeOS-specific orderfile for Chrome', |
| 4746 | 'pattern': '.', |
| 4747 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4748 | 'action': [ 'vpython', |
Yuke Liao | 001b62a5 | 2020-04-22 01:23:11 | [diff] [blame] | 4749 | 'src/tools/download_optimization_profile.py', |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4750 | '--newest_state=src/chromeos/profiles/orderfile.newest.txt', |
| 4751 | '--local_state=src/chromeos/profiles/orderfile.local.txt', |
| 4752 | '--output_name=src/chromeos/profiles/chromeos.orderfile.txt', |
| 4753 | '--gs_url_base=chromeos-prebuilt/afdo-job/orderfiles/vetted', |
| 4754 | ], |
| 4755 | }, |
Tiancong Wang | 97a8655 | 2019-09-17 22:32:40 | [diff] [blame] | 4756 | # Download AFDO profiles for Chrome OS for each architecture. |
| 4757 | { |
| 4758 | 'name': 'Fetch Chrome OS AFDO profiles (silvermont)', |
| 4759 | 'pattern': '.', |
| 4760 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4761 | 'action': [ 'vpython', |
Yuke Liao | 001b62a5 | 2020-04-22 01:23:11 | [diff] [blame] | 4762 | 'src/tools/download_optimization_profile.py', |
Tiancong Wang | 97a8655 | 2019-09-17 22:32:40 | [diff] [blame] | 4763 | '--newest_state=src/chromeos/profiles/silvermont.afdo.newest.txt', |
| 4764 | '--local_state=src/chromeos/profiles/silvermont.afdo.local.txt', |
| 4765 | '--output_name=src/chromeos/profiles/silvermont.afdo.prof', |
| 4766 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4767 | ], |
| 4768 | }, |
| 4769 | { |
| 4770 | 'name': 'Fetch Chrome OS AFDO profiles (airmont)', |
| 4771 | 'pattern': '.', |
| 4772 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4773 | 'action': [ 'vpython', |
Yuke Liao | 001b62a5 | 2020-04-22 01:23:11 | [diff] [blame] | 4774 | 'src/tools/download_optimization_profile.py', |
Tiancong Wang | 97a8655 | 2019-09-17 22:32:40 | [diff] [blame] | 4775 | '--newest_state=src/chromeos/profiles/airmont.afdo.newest.txt', |
| 4776 | '--local_state=src/chromeos/profiles/airmont.afdo.local.txt', |
| 4777 | '--output_name=src/chromeos/profiles/airmont.afdo.prof', |
| 4778 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4779 | ], |
| 4780 | }, |
| 4781 | { |
| 4782 | 'name': 'Fetch Chrome OS AFDO profiles (broadwell)', |
| 4783 | 'pattern': '.', |
| 4784 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4785 | 'action': [ 'vpython', |
Yuke Liao | 001b62a5 | 2020-04-22 01:23:11 | [diff] [blame] | 4786 | 'src/tools/download_optimization_profile.py', |
Tiancong Wang | 97a8655 | 2019-09-17 22:32:40 | [diff] [blame] | 4787 | '--newest_state=src/chromeos/profiles/broadwell.afdo.newest.txt', |
| 4788 | '--local_state=src/chromeos/profiles/broadwell.afdo.local.txt', |
| 4789 | '--output_name=src/chromeos/profiles/broadwell.afdo.prof', |
| 4790 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4791 | ], |
| 4792 | }, |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4793 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4794 | # Pull doclava binaries if building for Android. |
| 4795 | 'name': 'doclava', |
| 4796 | 'pattern': '.', |
| 4797 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4798 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 4799 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4800 | ], |
| 4801 | }, |
| 4802 | |
| 4803 | { |
| 4804 | 'name': 'fuchsia_sdk', |
| 4805 | 'pattern': '.', |
| 4806 | 'condition': 'checkout_fuchsia', |
| 4807 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4808 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4809 | 'src/build/fuchsia/update_sdk.py', |
Kevin Marshall | 9c4748c8 | 2019-08-23 18:46:50 | [diff] [blame] | 4810 | '--boot-images={checkout_fuchsia_boot_images}', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4811 | ], |
| 4812 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 4813 | |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4814 | # Download public CrOS simplechrome artifacts. The first hooks is for boards |
| 4815 | # that support VM images, the second hook for all other boards. For internal |
| 4816 | # boards, see src-internal's DEPS. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4817 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4818 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4819 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4820 | 'condition': '(checkout_simplechrome and cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4821 | 'action': [ |
| 4822 | 'src/third_party/chromite/bin/cros', |
| 4823 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 4824 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4825 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 4826 | '--fallback-versions=10', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4827 | '--nogn-gen', |
| 4828 | '--download-vm', |
Ben Pastene | 1d6b0d0 | 2020-04-28 15:55:49 | [diff] [blame] | 4829 | '--boards={cros_boards}', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4830 | '--cache-dir=src/build/cros_cache/', |
| 4831 | '--log-level=error', |
Ben Pastene | 5610b193 | 2020-03-05 05:30:25 | [diff] [blame] | 4832 | '--no-shell', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4833 | ], |
| 4834 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4835 | { |
| 4836 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 4837 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4838 | 'condition': '(checkout_simplechrome and not cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4839 | 'action': [ |
| 4840 | 'src/third_party/chromite/bin/cros', |
| 4841 | 'chrome-sdk', |
| 4842 | '--nogoma', |
| 4843 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 4844 | '--fallback-versions=10', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4845 | '--nogn-gen', |
Ben Pastene | 1d6b0d0 | 2020-04-28 15:55:49 | [diff] [blame] | 4846 | '--boards={cros_boards}', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4847 | '--cache-dir=src/build/cros_cache/', |
| 4848 | '--log-level=error', |
Ben Pastene | 5610b193 | 2020-03-05 05:30:25 | [diff] [blame] | 4849 | '--no-shell', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4850 | ], |
| 4851 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4852 | |
Yuke Liao | b3a683e | 2020-04-29 01:43:59 | [diff] [blame] | 4853 | # Download PGO profiles. |
| 4854 | { |
| 4855 | 'name': 'Fetch PGO profiles for win32', |
| 4856 | 'pattern': '.', |
| 4857 | 'condition': 'checkout_pgo_profiles and checkout_win', |
| 4858 | 'action': [ 'vpython', |
| 4859 | 'src/tools/update_pgo_profiles.py', |
| 4860 | '--target=win32', |
| 4861 | 'update', |
| 4862 | '--gs-url-base=chromium-optimization-profiles/pgo_profiles', |
| 4863 | ], |
| 4864 | }, |
| 4865 | { |
| 4866 | 'name': 'Fetch PGO profiles for win64', |
| 4867 | 'pattern': '.', |
| 4868 | 'condition': 'checkout_pgo_profiles and checkout_win', |
| 4869 | 'action': [ 'vpython', |
| 4870 | 'src/tools/update_pgo_profiles.py', |
| 4871 | '--target=win64', |
| 4872 | 'update', |
| 4873 | '--gs-url-base=chromium-optimization-profiles/pgo_profiles', |
| 4874 | ], |
| 4875 | }, |
| 4876 | { |
| 4877 | 'name': 'Fetch PGO profiles for mac', |
| 4878 | 'pattern': '.', |
| 4879 | 'condition': 'checkout_pgo_profiles and checkout_mac', |
| 4880 | 'action': [ 'vpython', |
| 4881 | 'src/tools/update_pgo_profiles.py', |
| 4882 | '--target=mac', |
| 4883 | 'update', |
| 4884 | '--gs-url-base=chromium-optimization-profiles/pgo_profiles', |
| 4885 | ], |
| 4886 | }, |
| 4887 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 4888 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 4889 | { |
| 4890 | 'name': 'vpython_common', |
| 4891 | 'pattern': '.', |
| 4892 | 'action': [ 'vpython', |
| 4893 | '-vpython-spec', 'src/.vpython', |
| 4894 | '-vpython-tool', 'install', |
| 4895 | ], |
| 4896 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4897 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 4898 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4899 | recursedeps = [ |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4900 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4901 | 'src/third_party/angle', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 4902 | 'src/third_party/openscreen/src', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 4903 | # src-internal has its own DEPS file to pull additional internal repos |
| 4904 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4905 | ] |