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