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