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