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