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', |
Johann | 5c03fd4 | 2017-11-08 15:22:17 | [diff] [blame] | 34 | 'checkout_libaom', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 35 | 'checkout_nacl', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 36 | 'checkout_oculus_sdk', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 37 | ] |
| 38 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 39 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 40 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 41 | # Variable that can be used to support multiple build scenarios, like having |
| 42 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 43 | # conditionally etc. |
| 44 | 'build_with_chromium': True, |
| 45 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 46 | # By default, we should check out everything needed to run on the main |
| 47 | # chromium waterfalls. This var can be also be set to "small", in order |
| 48 | # to skip things are not strictly needed to build chromium for development |
| 49 | # purposes. |
| 50 | 'checkout_configuration': 'default', |
| 51 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 52 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 53 | # build ARC++ support libraries. |
| 54 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 55 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 56 | # By default, do not check out android sdk sources. This can be overridden |
| 57 | # e.g. with custom_vars. |
| 58 | 'checkout_android_sdk_sources': False, |
| 59 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 60 | # Check out and download nacl by default. This can be disabled e.g. with |
| 61 | # custom_vars. |
| 62 | 'checkout_nacl': True, |
| 63 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 64 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 65 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 66 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 67 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 68 | # Fetch the additional packages and files needed to run all of the |
| 69 | # telemetry tests. This is false by default as some stuff is only |
| 70 | # privately accessible. |
| 71 | 'checkout_telemetry_dependencies': False, |
| 72 | |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 73 | # libaom provides support for AV1 but the bitstream is not frozen. |
Johann | 80428a9 | 2017-12-04 21:56:28 | [diff] [blame] | 74 | 'checkout_libaom': True, |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 75 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 76 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 77 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 78 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 79 | # TODO(dpranke): change to != "small" once != is supported. |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 80 | 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"', |
Dirk Pranke | 4c3098b | 2017-10-10 18:57:22 | [diff] [blame] | 81 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 82 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 83 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 84 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 85 | 'cros_board': '', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 86 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 87 | # as an expression. |
| 88 | 'cros_download_vm': '"{cros_board}" == "amd64-generic"', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 89 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 90 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 91 | 'aomedia_git': 'https://aomedia.googlesource.com', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 92 | 'chromium_git': 'https://chromium.googlesource.com', |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 93 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
| 94 | 'pdfium_git': 'https://pdfium.googlesource.com', |
| 95 | 'boringssl_git': 'https://boringssl.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 96 | 'skia_git': 'https://skia.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 97 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 98 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 99 | # the commit queue can handle CLs rolling sfntly |
| 100 | # and whatever else without interference from each other. |
Lei Zhang | e183034 | 2018-02-22 03:47:02 | [diff] [blame] | 101 | 'sfntly_revision': '2804148152d27fa2e6ec97a32bc2d56318e51142', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 102 | # Three lines of non-changing comments so that |
| 103 | # the commit queue can handle CLs rolling Skia |
| 104 | # and whatever else without interference from each other. |
skia-chromium-autoroll | 94a8e746 | 2018-06-01 16:31:46 | [diff] [blame] | 105 | 'skia_revision': '39ccf5d386ae07d4fdfaac6c6e89c325efb61255', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 106 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 107 | # the commit queue can handle CLs rolling V8 |
| 108 | # and whatever else without interference from each other. |
v8-autoroll | 7eff6a3 | 2018-06-01 13:52:31 | [diff] [blame] | 109 | 'v8_revision': 'aa6b10a829ac48388576a92db4a4ab3cf803a875', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 110 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 111 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 112 | # and whatever else without interference from each other. |
Marc-Antoine Ruel | 07398ec | 2018-05-25 12:29:54 | [diff] [blame] | 113 | 'swarming_revision': '3543e21830b9549e5b70c8c49482c8c28da2ba94', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 114 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 115 | # the commit queue can handle CLs rolling ANGLE |
| 116 | # and whatever else without interference from each other. |
angle-chromium-autoroll | e7b17bd | 2018-06-01 04:57:02 | [diff] [blame] | 117 | 'angle_revision': 'cbab27508edf116d73535f4cebf0dfb21d187c84', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 118 | # Three lines of non-changing comments so that |
| 119 | # the commit queue can handle CLs rolling build tools |
| 120 | # and whatever else without interference from each other. |
Tom Anderson | d7ed1f0 | 2018-05-25 01:40:23 | [diff] [blame] | 121 | 'buildtools_revision': '893eb86b02b2571894e328f05551112b96df1cce', |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 122 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 123 | # the commit queue can handle CLs rolling SwiftShader |
| 124 | # and whatever else without interference from each other. |
Nicolas Capens | 885440e7 | 2018-05-29 16:05:42 | [diff] [blame] | 125 | 'swiftshader_revision': '4b74373aac5107233555ae00b6df2340251b5022', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 126 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 127 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 128 | # and whatever else without interference from each other. |
pdfium-chromium-autoroll | 732c2d40 | 2018-06-01 04:10:35 | [diff] [blame] | 129 | 'pdfium_revision': '2d11d72e326140b9abeb6de2db1e28e5bf9d7e64', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 130 | # Three lines of non-changing comments so that |
| 131 | # the commit queue can handle CLs rolling openmax_dl |
| 132 | # and whatever else without interference from each other. |
Fabrice de Gans-Riberi | 429a4252 | 2018-04-05 23:08:34 | [diff] [blame] | 133 | 'openmax_dl_revision': '59265e0e9105ec94e473b59c5c7ca1941e4dbd83', |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 134 | # Three lines of non-changing comments so that |
| 135 | # the commit queue can handle CLs rolling BoringSSL |
| 136 | # and whatever else without interference from each other. |
David Benjamin | aafe2b00 | 2018-05-24 19:02:32 | [diff] [blame] | 137 | 'boringssl_revision': '5601bdac1ae594169e56515fe34956ec89bbffbf', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 138 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 139 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 140 | # and whatever else without interference from each other. |
Mark Mentovai | 9ed14316 | 2017-07-24 19:04:47 | [diff] [blame] | 141 | 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 142 | # Three lines of non-changing comments so that |
| 143 | # the commit queue can handle CLs rolling lighttpd |
| 144 | # and whatever else without interference from each other. |
| 145 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 146 | # Three lines of non-changing comments so that |
| 147 | # the commit queue can handle CLs rolling lss |
| 148 | # and whatever else without interference from each other. |
Torne (Richard Coles) | 9a6106e | 2017-10-20 17:48:17 | [diff] [blame] | 149 | 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 150 | # Three lines of non-changing comments so that |
| 151 | # the commit queue can handle CLs rolling NaCl |
| 152 | # and whatever else without interference from each other. |
nacl-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com | 2a38712 | 2018-05-16 01:16:11 | [diff] [blame] | 153 | 'nacl_revision': '93deff44b49fcbb4da0ee7961f21b6b93da194e9', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 154 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 155 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 156 | # and whatever else without interference from each other. |
Dominik Röttsches | e38057af | 2018-05-31 14:29:26 | [diff] [blame] | 157 | 'freetype_revision': '0589f6e6ee6e9bfe0c7139374fc8812e849e7bf7', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 158 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 159 | # the commit queue can handle CLs rolling HarfBuzz |
| 160 | # and whatever else without interference from each other. |
| 161 | 'harfbuzz_revision': '957e7756634a4fdf1654041e20e883cf964ecac9', |
| 162 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 163 | # the commit queue can handle CLs rolling catapult |
| 164 | # and whatever else without interference from each other. |
catapult-chromium-autoroll | fee079f | 2018-06-01 00:51:05 | [diff] [blame] | 165 | 'catapult_revision': 'b48f5b49150fee6571e073e435926cadb8d50487', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 166 | # Three lines of non-changing comments so that |
| 167 | # the commit queue can handle CLs rolling libFuzzer |
| 168 | # and whatever else without interference from each other. |
Jonathan Metzman | 51daa79 | 2018-04-24 04:40:26 | [diff] [blame] | 169 | 'libfuzzer_revision': 'fda403cf93ecb8792cb1d061564d89a6553ca020', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 170 | # Three lines of non-changing comments so that |
| 171 | # the commit queue can handle CLs rolling devtools-node-modules |
| 172 | # and whatever else without interference from each other. |
Will Chen | fa87418 | 2018-01-03 19:03:26 | [diff] [blame] | 173 | 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 174 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 175 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 176 | # and whatever else without interference from each other. |
Jonathan Metzman | a54e5af6 | 2017-11-01 19:29:06 | [diff] [blame] | 177 | 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 178 | # Three lines of non-changing comments so that |
| 179 | # the commit queue can handle CLs rolling feed |
| 180 | # and whatever else without interference from each other. |
Filip Gorski | bf5d495 | 2018-05-31 22:31:59 | [diff] [blame] | 181 | 'feed_revision': 'b8d36c91e9ac435023743d91eda462f3181031ef', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 182 | # Three lines of non-changing comments so that |
| 183 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 184 | # and whatever else without interference from each other. |
| 185 | 'android_sdk_build-tools_version': 'version:27.0.3-cr0', |
| 186 | # Three lines of non-changing comments so that |
| 187 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 188 | # and whatever else without interference from each other. |
| 189 | 'android_sdk_emulator_version': 'version:27.1.12-cr0', |
| 190 | # Three lines of non-changing comments so that |
| 191 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 192 | # and whatever else without interference from each other. |
| 193 | 'android_sdk_extras_version': 'version:47.0.0-cr0', |
| 194 | # Three lines of non-changing comments so that |
| 195 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 196 | # and whatever else without interference from each other. |
| 197 | 'android_sdk_platform-tools_version': 'version:27.0.1-cr0', |
| 198 | # Three lines of non-changing comments so that |
| 199 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 200 | # and whatever else without interference from each other. |
| 201 | 'android_sdk_platforms_version': 'version:android-27-cr0', |
| 202 | # Three lines of non-changing comments so that |
| 203 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 204 | # and whatever else without interference from each other. |
| 205 | 'android_sdk_sources_version': 'version:android-27-cr1', |
| 206 | # Three lines of non-changing comments so that |
| 207 | # the commit queue can handle CLs rolling android_sdk_tools_version |
| 208 | # and whatever else without interference from each other. |
Shenghua Zhang | 6fa967c | 2018-04-16 20:45:42 | [diff] [blame] | 209 | 'android_sdk_tools_version': 'version:26.1.1-cr9', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 210 | } |
| 211 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 212 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 213 | # If you need to add a new host, contact chrome infrastracture team. |
| 214 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 215 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 216 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 217 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 218 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 219 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 220 | 'chromium.googlesource.com', |
| 221 | 'pdfium.googlesource.com', |
| 222 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 223 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 224 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 225 | ] |
| 226 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 227 | deps = { |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 228 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | f942c51 | 2018-03-19 20:20:41 | [diff] [blame] | 229 | Var('chromium_git') + '/media_router.git' + '@' + '50d927e720309777a39fdf1ca89fd096bb51e103', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 230 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 231 | 'src/buildtools': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 232 | Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'), |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 233 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 234 | 'src/chrome/android/profiles': { |
| 235 | 'packages': [ |
| 236 | { |
| 237 | 'package': 'chromium/afdo/profiles/android', |
| 238 | 'version': 'version:3309', |
| 239 | }, |
| 240 | ], |
| 241 | 'condition': 'checkout_android', |
| 242 | 'dep_type': 'cipd', |
| 243 | }, |
| 244 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 245 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 246 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 247 | 'condition': 'checkout_mac', |
| 248 | }, |
| 249 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 250 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 251 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 252 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 253 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 254 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 255 | |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 256 | 'src/chrome/test/data/vr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 257 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 258 | |
bsheedy | a7a2860 | 2018-04-30 21:20:01 | [diff] [blame] | 259 | 'src/chrome/test/data/vr/webxr_samples': |
| 260 | Var('chromium_git') + '/external/github.com/immersive-web/webxr-samples.git' + '@' + '1848aed8fc333030c26787658db8fa4261a2b955', |
| 261 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 262 | 'src/ios/third_party/earl_grey/src': { |
Justin Cohen | 1a3debc9 | 2018-05-22 17:39:33 | [diff] [blame] | 263 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '1d507003e3c436c2db89d0945e3d23f7bf25ac2b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 264 | 'condition': 'checkout_ios', |
| 265 | }, |
| 266 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 267 | 'src/ios/third_party/firebase': { |
| 268 | 'packages': [ |
| 269 | { |
| 270 | 'package': 'chromium/third_party/firebase_ios', |
| 271 | 'version': 'version:5.0.1', |
| 272 | }, |
| 273 | ], |
| 274 | 'condition': 'checkout_ios', |
| 275 | 'dep_type': 'cipd', |
| 276 | }, |
| 277 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 278 | 'src/ios/third_party/fishhook/src': { |
| 279 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 280 | 'condition': 'checkout_ios', |
| 281 | }, |
| 282 | |
| 283 | 'src/ios/third_party/gcdwebserver/src': { |
| 284 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 285 | 'condition': 'checkout_ios', |
| 286 | }, |
| 287 | |
| 288 | 'src/ios/third_party/material_components_ios/src': { |
iOS Autoroller | 9c9e627 | 2018-05-30 20:19:50 | [diff] [blame] | 289 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '7e7ca3549d8e21c8749c3daf1f9a6dce5be840d3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 290 | 'condition': 'checkout_ios', |
| 291 | }, |
| 292 | |
| 293 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 294 | '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] | 295 | 'condition': 'checkout_ios', |
| 296 | }, |
| 297 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 298 | 'src/ios/third_party/material_internationalization_ios/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 299 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '8f28a55c7f35b95a587bba01a8467ea470647873', |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 300 | 'condition': 'checkout_ios', |
| 301 | }, |
| 302 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 303 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
| 304 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
| 305 | 'condition': 'checkout_ios', |
| 306 | }, |
| 307 | |
| 308 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
| 309 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81', |
| 310 | 'condition': 'checkout_ios', |
| 311 | }, |
| 312 | |
| 313 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 314 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '92c9e56f4e07622084b3d931247db974fec55dde', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 315 | 'condition': 'checkout_ios', |
| 316 | }, |
| 317 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 318 | 'src/ios/third_party/motion_interchange_objc/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 319 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 320 | 'condition': 'checkout_ios', |
| 321 | }, |
| 322 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 323 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | e82ca94 | 2018-03-06 20:32:21 | [diff] [blame] | 324 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '5df831026445004b2fc0f6a42f8b8f33af46512b', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 325 | 'condition': 'checkout_ios', |
| 326 | }, |
| 327 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 328 | 'src/ios/third_party/motion_transitioning_objc/src': { |
| 329 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6', |
| 330 | 'condition': 'checkout_ios', |
| 331 | }, |
| 332 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 333 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 334 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 335 | 'condition': 'checkout_ios', |
| 336 | }, |
| 337 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 338 | 'src/media/cdm/api': |
Xiaohan Wang | f4f25ecd | 2018-05-02 21:17:33 | [diff] [blame] | 339 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'd1260255637fe01acd08ba166f76945e83e02cc3', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 340 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 341 | 'src/native_client': { |
| 342 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 343 | 'condition': 'checkout_nacl', |
| 344 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 345 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 346 | 'src/third_party/SPIRV-Tools/src': |
| 347 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 348 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 349 | 'src/third_party/accessibility_test_framework': { |
| 350 | 'packages': [ |
| 351 | { |
| 352 | 'package': 'chromium/third_party/accessibility-test-framework', |
| 353 | 'version': 'version:2.1-cr0', |
| 354 | }, |
| 355 | ], |
| 356 | 'condition': 'checkout_android', |
| 357 | 'dep_type': 'cipd', |
| 358 | }, |
| 359 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 360 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 361 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 362 | 'condition': 'checkout_android', |
| 363 | }, |
| 364 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 365 | 'src/third_party/android_ndk': { |
Stefan Zager | 47a954c | 2018-05-04 00:47:37 | [diff] [blame] | 366 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '5cd86312e794bdf542a3685c6f10cbb96072990b', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 367 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 368 | }, |
| 369 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 370 | 'src/third_party/android_support_test_runner': { |
| 371 | 'packages': [ |
| 372 | { |
| 373 | 'package': 'chromium/third_party/android_support_test_runner', |
| 374 | 'version': 'version:0.5-cr0', |
| 375 | }, |
| 376 | ], |
| 377 | 'condition': 'checkout_android', |
| 378 | 'dep_type': 'cipd', |
| 379 | }, |
| 380 | |
| 381 | 'src/third_party/android_system_sdk': { |
| 382 | 'packages': [ |
| 383 | { |
| 384 | 'package': 'chromium/third_party/android_system_sdk', |
| 385 | 'version': 'version:27-cr0', |
| 386 | }, |
| 387 | ], |
| 388 | 'condition': 'checkout_android', |
| 389 | 'dep_type': 'cipd', |
| 390 | }, |
| 391 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 392 | 'src/third_party/android_tools': { |
Peter Wen | 17a03d6 | 2018-03-05 17:54:33 | [diff] [blame] | 393 | 'url': Var('chromium_git') + '/android_tools.git' + '@' + 'c22a664c39af72dd8f89200220713dcad811300a', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 394 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 395 | }, |
| 396 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 397 | 'src/third_party/android_sdk/public': { |
| 398 | 'packages': [ |
| 399 | { |
| 400 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 401 | 'version': Var('android_sdk_build-tools_version'), |
| 402 | }, |
| 403 | { |
| 404 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 405 | 'version': Var('android_sdk_emulator_version'), |
| 406 | }, |
| 407 | { |
| 408 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 409 | 'version': Var('android_sdk_extras_version'), |
| 410 | }, |
| 411 | { |
| 412 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 413 | 'version': Var('android_sdk_platform-tools_version'), |
| 414 | }, |
| 415 | { |
| 416 | 'package': 'chromium/third_party/android_sdk/public/platforms', |
| 417 | 'version': Var('android_sdk_platforms_version'), |
| 418 | }, |
| 419 | { |
| 420 | 'package': 'chromium/third_party/android_sdk/public/tools', |
| 421 | 'version': Var('android_sdk_tools_version'), |
| 422 | }, |
| 423 | ], |
| 424 | 'condition': 'checkout_android', |
| 425 | 'dep_type': 'cipd', |
| 426 | }, |
| 427 | |
| 428 | 'src/third_party/android_sdk/sources': { |
| 429 | 'packages': [ |
| 430 | { |
| 431 | 'package': 'chromium/third_party/android_sdk/sources', |
| 432 | 'version': Var('android_sdk_sources_version'), |
| 433 | }, |
| 434 | ], |
| 435 | 'condition': 'checkout_android_sdk_sources', |
| 436 | 'dep_type': 'cipd', |
| 437 | }, |
| 438 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 439 | 'src/third_party/angle': |
| 440 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 441 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 442 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 443 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 444 | 'condition': 'checkout_android', |
| 445 | }, |
| 446 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 447 | 'src/third_party/apk-patch-size-estimator': { |
| 448 | 'packages': [ |
| 449 | { |
| 450 | 'package': 'chromium/third_party/apk-patch-size-estimator', |
| 451 | 'version': 'version:0.2-cr0', |
| 452 | }, |
| 453 | ], |
| 454 | 'condition': 'checkout_android', |
| 455 | 'dep_type': 'cipd', |
| 456 | }, |
| 457 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 458 | 'src/third_party/auto/src': { |
Peter Wen | 4689398 | 2018-01-18 16:53:46 | [diff] [blame] | 459 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82', |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 460 | 'condition': 'checkout_android', |
| 461 | }, |
| 462 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 463 | 'src/third_party/bazel': { |
| 464 | 'packages': [ |
| 465 | { |
| 466 | 'package': 'chromium/third_party/bazel', |
| 467 | 'version': 'version:0.10.0', |
| 468 | }, |
| 469 | ], |
| 470 | 'condition': 'checkout_android', |
| 471 | 'dep_type': 'cipd', |
| 472 | }, |
| 473 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 474 | 'src/third_party/bidichecker': |
| 475 | Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0', |
| 476 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 477 | 'src/third_party/bison': { |
| 478 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 479 | 'condition': 'checkout_win', |
| 480 | }, |
| 481 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 482 | 'src/third_party/boringssl/src': |
| 483 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 484 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 485 | 'src/third_party/bouncycastle': { |
| 486 | 'packages': [ |
| 487 | { |
| 488 | 'package': 'chromium/third_party/bouncycastle', |
| 489 | 'version': 'version:1.46-cr0', |
| 490 | }, |
| 491 | ], |
| 492 | 'condition': 'checkout_android', |
| 493 | 'dep_type': 'cipd', |
| 494 | }, |
| 495 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 496 | 'src/third_party/breakpad/breakpad': |
Max Moroz | 946a8b8 | 2018-05-29 21:02:01 | [diff] [blame] | 497 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '27c001192ba9b78fe8f47c5a51a2d0a371860f12', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 498 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 499 | 'src/third_party/byte_buddy': { |
| 500 | 'packages': [ |
| 501 | { |
| 502 | 'package': 'chromium/third_party/byte_buddy', |
| 503 | 'version': 'version:1.4.17-cr0', |
| 504 | }, |
| 505 | ], |
| 506 | 'condition': 'checkout_android', |
| 507 | 'dep_type': 'cipd', |
| 508 | }, |
| 509 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 510 | 'src/third_party/catapult': |
| 511 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 512 | |
| 513 | 'src/third_party/ced/src': |
| 514 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9', |
| 515 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 516 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 517 | 'src/third_party/chromite': { |
chromite-chromium-autoroll | 423b431 | 2018-06-01 04:58:16 | [diff] [blame] | 518 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'a09f2ac039e085d3ffd2dc4445f6dc833d4420f5', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 519 | 'condition': 'checkout_linux', |
| 520 | }, |
| 521 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 522 | 'src/third_party/cld_3/src': |
Nico Weber | a8d4b46 | 2018-01-31 20:54:52 | [diff] [blame] | 523 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '484afe9ba7438d078e60b3a26e7fb590213c0e17', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 524 | |
| 525 | 'src/third_party/colorama/src': |
| 526 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 527 | |
| 528 | 'src/third_party/crc32c/src': |
tzik | 5793a94f | 2018-05-11 04:18:40 | [diff] [blame] | 529 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + 'f8925d027884dde9a8f567f1fa230b92048f6132', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 530 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 531 | # For Linux and Chromium OS. |
| 532 | 'src/third_party/cros_system_api': { |
Renee Wright | 0d2b3c8 | 2018-06-01 07:48:21 | [diff] [blame] | 533 | 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '8fd2b32dce02ef01f03eee8587a9247e538f38d0', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 534 | 'condition': 'checkout_linux', |
| 535 | }, |
| 536 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 537 | 'src/third_party/custom_tabs_client/src': { |
Peter E Conn | 2b4ecde | 2018-05-21 10:01:03 | [diff] [blame] | 538 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'bd0bd8af3755f0941c766403c4603a1d8d2ef0f4', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 539 | 'condition': 'checkout_android', |
| 540 | }, |
| 541 | |
| 542 | 'src/third_party/depot_tools': |
depot-tools-chromium-autoroll | 60344b5 | 2018-06-01 10:32:26 | [diff] [blame] | 543 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '621fe6f9b56a04d06b4a730cd2867d50282a6490', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 544 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 545 | 'src/third_party/devtools-node-modules': |
| 546 | 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] | 547 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 548 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | f1f82a1 | 2017-12-13 15:52:40 | [diff] [blame] | 549 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '60b46718e28f553ab57e3d2bbda5b3b41456f417', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 550 | |
| 551 | 'src/third_party/elfutils/src': { |
| 552 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 553 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 554 | }, |
| 555 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 556 | 'src/third_party/errorprone/lib': { |
Peter Wen | a9d8462a | 2018-04-25 17:18:12 | [diff] [blame] | 557 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 558 | 'condition': 'checkout_android', |
| 559 | }, |
| 560 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 561 | 'src/third_party/espresso': { |
| 562 | 'packages': [ |
| 563 | { |
| 564 | 'package': 'chromium/third_party/espresso', |
| 565 | 'version': 'version:2.2.1-cr0', |
| 566 | }, |
| 567 | ], |
| 568 | 'condition': 'checkout_android', |
| 569 | 'dep_type': 'cipd', |
| 570 | }, |
| 571 | |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 572 | 'src/third_party/feed/src': { |
| 573 | 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'), |
| 574 | 'condition': 'checkout_android', |
| 575 | }, |
| 576 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 577 | 'src/third_party/ffmpeg': |
[email protected] | 78bba462 | 2018-05-25 20:37:20 | [diff] [blame] | 578 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '1da9c3346d874cfd2aead73a3ca57068ddf2a3dd', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 579 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 580 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 581 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 582 | |
| 583 | 'src/third_party/flatbuffers/src': |
| 584 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290', |
| 585 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 586 | # Used for embedded builds. CrOS & Linux use the system version. |
| 587 | 'src/third_party/fontconfig/src': { |
Tom Anderson | 34db191c | 2017-12-13 22:36:48 | [diff] [blame] | 588 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'b546940435ebfb0df575bc7a2350d1e913919c34', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 589 | 'condition': 'checkout_linux', |
| 590 | }, |
| 591 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 592 | 'src/third_party/freetype/src': |
| 593 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 594 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 595 | 'src/third_party/harfbuzz-ng/src': |
| 596 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 597 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 598 | # Chrome OS touchpad gestures library. |
| 599 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 600 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 601 | 'condition': 'checkout_linux', |
| 602 | }, |
| 603 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 604 | 'src/third_party/glslang/src': |
Peng Huang | 80463de | 2018-02-07 21:06:33 | [diff] [blame] | 605 | Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + 'ec1476b7060306fd9109faf7a4c70a20ea3b538c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 606 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 607 | 'src/third_party/google_toolbox_for_mac/src': { |
| 608 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 609 | 'condition': 'checkout_ios or checkout_mac', |
| 610 | }, |
| 611 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 612 | 'src/third_party/google-truth': { |
| 613 | 'packages': [ |
| 614 | { |
| 615 | 'package': 'chromium/third_party/google-truth', |
| 616 | 'version': 'version:0.40', |
| 617 | }, |
| 618 | ], |
| 619 | 'condition': 'checkout_android', |
| 620 | 'dep_type': 'cipd', |
| 621 | }, |
| 622 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 623 | 'src/third_party/googletest/src': |
Fabrice de Gans-Riberi | 19263bd | 2018-05-22 19:28:51 | [diff] [blame] | 624 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '145d05750b15324899473340c8dd5af50d125d33', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 625 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 626 | # GNU binutils assembler for x86-32. |
| 627 | 'src/third_party/gnu_binutils': { |
| 628 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 629 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 630 | }, |
| 631 | |
| 632 | 'src/third_party/gperf': { |
| 633 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 634 | 'condition': 'checkout_win', |
| 635 | }, |
| 636 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 637 | 'src/third_party/gson': { |
| 638 | 'packages': [ |
| 639 | { |
| 640 | 'package': 'chromium/third_party/gson', |
| 641 | 'version': 'version:2.8.0-cr0', |
| 642 | }, |
| 643 | ], |
| 644 | 'condition': 'checkout_android', |
| 645 | 'dep_type': 'cipd', |
| 646 | }, |
| 647 | |
| 648 | 'src/third_party/guava': { |
| 649 | 'packages': [ |
| 650 | { |
| 651 | 'package': 'chromium/third_party/guava', |
| 652 | 'version': 'version:23.0-cr0', |
| 653 | }, |
| 654 | ], |
| 655 | 'condition': 'checkout_android', |
| 656 | 'dep_type': 'cipd', |
| 657 | }, |
| 658 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 659 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 660 | '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] | 661 | 'condition': 'checkout_android', |
| 662 | }, |
| 663 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 664 | 'src/third_party/arcore-android-sdk/src': { |
| 665 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '772bed8e2e1bc525a0d10441fa71168a9a87eb69', |
| 666 | 'condition': 'checkout_android', |
| 667 | }, |
| 668 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 669 | 'src/third_party/hamcrest': { |
| 670 | 'packages': [ |
| 671 | { |
| 672 | 'package': 'chromium/third_party/hamcrest', |
| 673 | 'version': 'version:1.3-cr0', |
| 674 | }, |
| 675 | ], |
| 676 | 'condition': 'checkout_android', |
| 677 | 'dep_type': 'cipd', |
| 678 | }, |
| 679 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 680 | 'src/third_party/hunspell_dictionaries': |
Chris Nardi | eea5de8 | 2017-10-14 22:21:31 | [diff] [blame] | 681 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 682 | |
| 683 | 'src/third_party/icu': |
Jungshik Shin | 359c346 | 2018-05-08 20:49:13 | [diff] [blame] | 684 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'f61e46dbee9d539a32551493e3bcc1dea92f83ec', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 685 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 686 | 'src/third_party/icu4j': { |
| 687 | 'packages': [ |
| 688 | { |
| 689 | 'package': 'chromium/third_party/icu4j', |
| 690 | 'version': 'version:53.1-cr0', |
| 691 | }, |
| 692 | ], |
| 693 | 'condition': 'checkout_android', |
| 694 | 'dep_type': 'cipd', |
| 695 | }, |
| 696 | |
| 697 | 'src/third_party/intellij': { |
| 698 | 'packages': [ |
| 699 | { |
| 700 | 'package': 'chromium/third_party/intellij', |
| 701 | 'version': 'version:12.0-cr0', |
| 702 | }, |
| 703 | ], |
| 704 | 'condition': 'checkout_android', |
| 705 | 'dep_type': 'cipd', |
| 706 | }, |
| 707 | |
| 708 | 'src/third_party/javax_inject': { |
| 709 | 'packages': [ |
| 710 | { |
| 711 | 'package': 'chromium/third_party/javax_inject', |
| 712 | 'version': 'version:1-cr0', |
| 713 | }, |
| 714 | ], |
| 715 | 'condition': 'checkout_android', |
| 716 | 'dep_type': 'cipd', |
| 717 | }, |
| 718 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 719 | 'src/third_party/jsoncpp/source': |
| 720 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 721 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 722 | 'src/third_party/jsr-305/src': { |
| 723 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 724 | 'condition': 'checkout_android', |
| 725 | }, |
| 726 | |
| 727 | 'src/third_party/junit/src': { |
| 728 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 729 | 'condition': 'checkout_android', |
| 730 | }, |
| 731 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 732 | 'src/third_party/leakcanary/src': { |
| 733 | 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e', |
| 734 | 'condition': 'checkout_android', |
| 735 | }, |
| 736 | |
| 737 | 'src/third_party/leveldatabase/src': |
Victor Costan | 0c4c06e | 2018-05-16 19:17:27 | [diff] [blame] | 738 | Var('chromium_git') + '/external/leveldb.git' + '@' + '18683981505dc374ce29211c80a9552f8f2f4571', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 739 | |
| 740 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 741 | 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] | 742 | |
| 743 | 'src/third_party/libaddressinput/src': |
Peter Collingbourne | c85bc32 | 2018-02-28 02:22:15 | [diff] [blame] | 744 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'd955c63ec7048d59dffd20af25eeec23da878d27', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 745 | |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 746 | 'src/third_party/libaom/source/libaom': { |
Tom Finegan | 525e4537 | 2017-12-22 21:32:24 | [diff] [blame] | 747 | 'url': Var('aomedia_git') + '/aom.git' + '@' + 'cc92258a08d98f469dff1be288acbc322632377b', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 748 | 'condition': 'checkout_libaom', |
| 749 | }, |
| 750 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 751 | # Userspace interface to kernel DRM services. |
| 752 | 'src/third_party/libdrm/src': { |
Kristian H. Kristensen | 03ecc6d | 2017-10-30 23:53:36 | [diff] [blame] | 753 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 754 | 'condition': 'checkout_linux', |
| 755 | }, |
| 756 | |
| 757 | # The libevdev library (Chrome OS version). |
| 758 | 'src/third_party/libevdev/src': { |
| 759 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 760 | 'condition': 'checkout_linux', |
| 761 | }, |
| 762 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 763 | 'src/third_party/libjpeg_turbo': |
| 764 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd', |
| 765 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 766 | 'src/third_party/liblouis/src': { |
| 767 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2', |
| 768 | 'condition': 'checkout_linux', |
| 769 | }, |
| 770 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 771 | 'src/third_party/libphonenumber/dist': |
| 772 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 773 | |
| 774 | 'src/third_party/libprotobuf-mutator/src': |
| 775 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 776 | |
| 777 | 'src/third_party/libsrtp': |
Fabrice de Gans-Riberi | 0dfc24c | 2018-04-06 21:05:45 | [diff] [blame] | 778 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'fc2345089a6b3c5aca9ecd2e1941871a78a13e9c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 779 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 780 | # Android Explicit Synchronization. |
| 781 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 782 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
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/libvpx/source/libvpx': |
Jerome Jiang | 17eb6109 | 2018-05-29 21:48:08 | [diff] [blame] | 787 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '2b08f89076d1e93339fbbcc10e3298a0eec66bd6', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 788 | |
| 789 | 'src/third_party/libwebm/source': |
tzik | 68959931 | 2018-04-26 03:31:37 | [diff] [blame] | 790 | Var('chromium_git') + '/webm/libwebm.git' + '@' + 'af81f26025b7435fa9a14ad07c58b44cf9280430', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 791 | |
| 792 | 'src/third_party/libyuv': |
Mirko Bonadei | 12ff739 | 2018-05-14 09:37:20 | [diff] [blame] | 793 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'a9626b9daf62a9b260737e9c2de821ad087b19a1', # from r1708 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 794 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 795 | 'src/third_party/lighttpd': { |
| 796 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 797 | 'condition': 'checkout_mac or checkout_win', |
| 798 | }, |
| 799 | |
| 800 | 'src/third_party/lss': { |
| 801 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 802 | 'condition': 'checkout_android or checkout_linux', |
| 803 | }, |
| 804 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 805 | 'src/third_party/material_design_icons/src': { |
| 806 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 807 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 808 | 'condition': 'checkout_ios', |
| 809 | }, |
| 810 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 811 | 'src/third_party/mesa/src': |
tzik | 51556bb | 2018-04-29 09:48:22 | [diff] [blame] | 812 | Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '9d9b0710470f581cb5485b02b6acd8415cc093e8', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 813 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 814 | # GNU binutils assembler for x86-64. |
| 815 | 'src/third_party/mingw-w64/mingw/bin': { |
| 816 | '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] | 817 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 818 | }, |
| 819 | |
| 820 | # Graphics buffer allocator for Chrome OS. |
| 821 | 'src/third_party/minigbm/src': { |
Miguel Casas | 852481b | 2018-06-01 16:33:47 | [diff] [blame^] | 822 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3cb5bbacc5c8a79105c868875222696f6b9d8296', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 823 | 'condition': 'checkout_linux', |
| 824 | }, |
| 825 | |
| 826 | # Minizip library. Used on Chrome OS. |
| 827 | 'src/third_party/minizip/src': { |
Tatsuhisa Yamaguchi | 0c5fc82a | 2017-12-27 01:52:10 | [diff] [blame] | 828 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 829 | 'condition': 'checkout_linux', |
| 830 | }, |
| 831 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 832 | 'src/third_party/mockito/src': { |
| 833 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850', |
| 834 | 'condition': 'checkout_android', |
| 835 | }, |
| 836 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 837 | # Binaries for nacl sdk. |
| 838 | 'src/third_party/nacl_sdk_binaries': { |
| 839 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 840 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 841 | }, |
| 842 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 843 | 'src/third_party/netty-tcnative/src': { |
| 844 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 845 | 'condition': 'checkout_android', |
| 846 | }, |
| 847 | |
| 848 | 'src/third_party/netty4/src': { |
| 849 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 850 | 'condition': 'checkout_android', |
| 851 | }, |
| 852 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 853 | 'src/third_party/objenesis': { |
| 854 | 'packages': [ |
| 855 | { |
| 856 | 'package': 'chromium/third_party/objenesis', |
| 857 | 'version': 'version:2.4-cr0', |
| 858 | }, |
| 859 | ], |
| 860 | 'condition': 'checkout_android', |
| 861 | 'dep_type': 'cipd', |
| 862 | }, |
| 863 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 864 | 'src/third_party/openh264/src': |
Wez | c6d201bf | 2018-05-03 17:04:59 | [diff] [blame] | 865 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '3b51f16a4a41df729f8d647f03e48c5f272911ff', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 866 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 867 | 'src/third_party/openmax_dl': |
| 868 | Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'), |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 869 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 870 | 'src/third_party/ow2_asm': { |
| 871 | 'packages': [ |
| 872 | { |
| 873 | 'package': 'chromium/third_party/ow2_asm', |
| 874 | 'version': 'version:5.0.1-cr0', |
| 875 | }, |
| 876 | ], |
| 877 | 'condition': 'checkout_android', |
| 878 | 'dep_type': 'cipd', |
| 879 | }, |
| 880 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 881 | 'src/third_party/pdfium': |
| 882 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 883 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 884 | # Parses Windows PE/COFF executable format. |
| 885 | 'src/third_party/pefile': { |
| 886 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 887 | 'condition': 'checkout_win', |
| 888 | }, |
| 889 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 890 | 'src/third_party/perfetto': |
Oystein Eftevaag | 1d75174 | 2018-05-24 06:12:27 | [diff] [blame] | 891 | Var('android_git') + '/platform/external/perfetto.git' + '@' + 'f0161112a8e0adea7b0f527f0662edc2ff6150dd', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 892 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 893 | 'src/third_party/perl': { |
| 894 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78', |
| 895 | 'condition': 'checkout_win', |
| 896 | }, |
| 897 | |
| 898 | # Dependency of chromite.git and skia. |
| 899 | 'src/third_party/pyelftools': { |
| 900 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 901 | 'condition': 'checkout_linux', |
| 902 | }, |
| 903 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 904 | 'src/third_party/pyftpdlib/src': |
| 905 | Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45', |
| 906 | |
| 907 | 'src/third_party/pywebsocket/src': |
| 908 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 909 | |
| 910 | 'src/third_party/re2/src': |
Max Moroz | 13bd9f72 | 2017-12-05 18:12:11 | [diff] [blame] | 911 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5185d85264d23cfae4b38e2703703e9a4c8e974c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 912 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 913 | 'src/third_party/r8': { |
| 914 | 'packages': [ |
| 915 | { |
| 916 | 'package': 'chromium/third_party/r8', |
| 917 | 'version': 'version:1.0.26', |
| 918 | }, |
| 919 | ], |
| 920 | 'condition': 'checkout_android', |
| 921 | 'dep_type': 'cipd', |
| 922 | }, |
| 923 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 924 | 'src/third_party/requests/src': { |
| 925 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 926 | 'condition': 'checkout_android', |
| 927 | }, |
| 928 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 929 | 'src/third_party/robolectric': { |
| 930 | 'packages': [ |
| 931 | { |
| 932 | 'package': 'chromium/third_party/robolectric', |
| 933 | 'version': 'version:3.5.1', |
| 934 | }, |
| 935 | ], |
| 936 | 'condition': 'checkout_android', |
| 937 | 'dep_type': 'cipd', |
| 938 | }, |
| 939 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 940 | 'src/third_party/robolectric/robolectric': { |
John Budorick | e7f2d133 | 2017-11-30 23:35:22 | [diff] [blame] | 941 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 942 | 'condition': 'checkout_android', |
| 943 | }, |
| 944 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 945 | 'src/third_party/sfntly/src': |
| 946 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
| 947 | |
| 948 | 'src/third_party/shaderc/src': |
| 949 | Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4', |
| 950 | |
| 951 | 'src/third_party/skia': |
| 952 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 953 | |
| 954 | 'src/third_party/smhasher/src': |
| 955 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 956 | |
| 957 | 'src/third_party/snappy/src': |
Victor Costan | f0794a01 | 2018-02-20 23:18:32 | [diff] [blame] | 958 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'ca37ab7fb9b718e056009babb4fea591626e5882', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 959 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 960 | 'src/third_party/sqlite4java': { |
| 961 | 'packages': [ |
| 962 | { |
| 963 | 'package': 'chromium/third_party/sqlite4java', |
| 964 | 'version': 'version:0.282-cr0', |
| 965 | }, |
| 966 | ], |
| 967 | 'condition': 'checkout_android', |
| 968 | 'dep_type': 'cipd', |
| 969 | }, |
| 970 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 971 | 'src/third_party/swiftshader': |
| 972 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 973 | |
| 974 | 'src/third_party/ub-uiautomator/lib': { |
| 975 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 976 | 'condition': 'checkout_android', |
| 977 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 978 | |
| 979 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | f274fcc | 2018-03-23 19:07:00 | [diff] [blame] | 980 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '159d060dceec41a64a57356cbba8c455105f3f72', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 981 | |
| 982 | 'src/third_party/visualmetrics/src': |
| 983 | Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', |
| 984 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 985 | # Display server protocol for Linux. |
| 986 | 'src/third_party/wayland/src': { |
| 987 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 988 | 'condition': 'checkout_linux', |
| 989 | }, |
| 990 | |
| 991 | # Wayland protocols that add functionality not available in the core protocol. |
| 992 | 'src/third_party/wayland-protocols/src': { |
Alexandros Frantzis | aed3360b | 2018-01-24 18:40:04 | [diff] [blame] | 993 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '4f789286e4ab7f6fecc2ccb895d79362a9b2382a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 994 | 'condition': 'checkout_linux', |
| 995 | }, |
| 996 | |
| 997 | # Wireless Display Software. Used on Chrome OS. |
| 998 | 'src/third_party/wds/src': { |
| 999 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1000 | 'condition': 'checkout_linux', |
| 1001 | }, |
| 1002 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1003 | 'src/third_party/webdriver/pylib': |
| 1004 | Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd', |
| 1005 | |
| 1006 | 'src/third_party/webgl/src': |
Yunchao He | f5ab530 | 2018-05-26 01:08:55 | [diff] [blame] | 1007 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '198d637dd3e21d837fac6b3186cc6bc72e2f7219', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1008 | |
| 1009 | 'src/third_party/webrtc': |
webrtc-chromium-autoroll | c1d09ee | 2018-06-01 14:16:45 | [diff] [blame] | 1010 | Var('webrtc_git') + '/src.git' + '@' + '79ce820a1382054143be44d75a658daa313c0ace', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1011 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1012 | 'src/third_party/xdg-utils': { |
| 1013 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1014 | 'condition': 'checkout_linux', |
| 1015 | }, |
| 1016 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1017 | 'src/third_party/xstream': { |
| 1018 | 'packages': [ |
| 1019 | { |
| 1020 | 'package': 'chromium/third_party/xstream', |
| 1021 | 'version': 'version:1.4.8-cr0', |
| 1022 | }, |
| 1023 | ], |
| 1024 | 'condition': 'checkout_android', |
| 1025 | 'dep_type': 'cipd', |
| 1026 | }, |
| 1027 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1028 | 'src/third_party/yasm/source/patched-yasm': |
| 1029 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc', |
| 1030 | |
| 1031 | 'src/tools/gyp': |
| 1032 | Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb', |
| 1033 | |
| 1034 | 'src/tools/page_cycler/acid3': |
| 1035 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1036 | |
| 1037 | 'src/tools/swarming_client': |
| 1038 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1039 | |
| 1040 | 'src/v8': |
| 1041 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1042 | |
| 1043 | 'src-internal': { |
src-internal-chromium-autoroll | 1ba2886 | 2018-05-29 22:04:16 | [diff] [blame] | 1044 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@186537f188610462f4429f1dfa720a0d0a26d62f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1045 | 'condition': 'checkout_src_internal', |
| 1046 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1047 | |
| 1048 | # === ANDROID_DEPS Generated Code Start === |
| 1049 | # Generated by //tools/android/roll/android_deps/fetch_all.sh |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1050 | 'src/third_party/android_deps/repository/android_arch_core_common': { |
| 1051 | 'packages': [ |
| 1052 | { |
| 1053 | 'package': 'chromium/third_party/android_deps/repository/android_arch_core_common', |
| 1054 | 'version': 'version:1.0.0-cr0', |
| 1055 | }, |
| 1056 | ], |
| 1057 | 'condition': 'checkout_android', |
| 1058 | 'dep_type': 'cipd', |
| 1059 | }, |
| 1060 | |
| 1061 | 'src/third_party/android_deps/repository/android_arch_lifecycle_common': { |
| 1062 | 'packages': [ |
| 1063 | { |
| 1064 | 'package': 'chromium/third_party/android_deps/repository/android_arch_lifecycle_common', |
| 1065 | 'version': 'version:1.0.0-cr0', |
| 1066 | }, |
| 1067 | ], |
| 1068 | 'condition': 'checkout_android', |
| 1069 | 'dep_type': 'cipd', |
| 1070 | }, |
| 1071 | |
| 1072 | 'src/third_party/android_deps/repository/android_arch_lifecycle_runtime': { |
| 1073 | 'packages': [ |
| 1074 | { |
| 1075 | 'package': 'chromium/third_party/android_deps/repository/android_arch_lifecycle_runtime', |
| 1076 | 'version': 'version:1.0.0-cr0', |
| 1077 | }, |
| 1078 | ], |
| 1079 | 'condition': 'checkout_android', |
| 1080 | 'dep_type': 'cipd', |
| 1081 | }, |
| 1082 | |
| 1083 | 'src/third_party/android_deps/repository/com_android_support_animated_vector_drawable': { |
| 1084 | 'packages': [ |
| 1085 | { |
| 1086 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_animated_vector_drawable', |
| 1087 | 'version': 'version:27.0.0-cr0', |
| 1088 | }, |
| 1089 | ], |
| 1090 | 'condition': 'checkout_android', |
| 1091 | 'dep_type': 'cipd', |
| 1092 | }, |
| 1093 | |
| 1094 | 'src/third_party/android_deps/repository/com_android_support_appcompat_v7': { |
| 1095 | 'packages': [ |
| 1096 | { |
| 1097 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_appcompat_v7', |
| 1098 | 'version': 'version:27.0.0-cr0', |
| 1099 | }, |
| 1100 | ], |
| 1101 | 'condition': 'checkout_android', |
| 1102 | 'dep_type': 'cipd', |
| 1103 | }, |
| 1104 | |
| 1105 | 'src/third_party/android_deps/repository/com_android_support_cardview_v7': { |
| 1106 | 'packages': [ |
| 1107 | { |
| 1108 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_cardview_v7', |
| 1109 | 'version': 'version:27.0.0-cr0', |
| 1110 | }, |
| 1111 | ], |
| 1112 | 'condition': 'checkout_android', |
| 1113 | 'dep_type': 'cipd', |
| 1114 | }, |
| 1115 | |
| 1116 | 'src/third_party/android_deps/repository/com_android_support_design': { |
| 1117 | 'packages': [ |
| 1118 | { |
| 1119 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_design', |
| 1120 | 'version': 'version:27.0.0-cr0', |
| 1121 | }, |
| 1122 | ], |
| 1123 | 'condition': 'checkout_android', |
| 1124 | 'dep_type': 'cipd', |
| 1125 | }, |
| 1126 | |
| 1127 | 'src/third_party/android_deps/repository/com_android_support_gridlayout_v7': { |
| 1128 | 'packages': [ |
| 1129 | { |
| 1130 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_gridlayout_v7', |
| 1131 | 'version': 'version:27.0.0-cr0', |
| 1132 | }, |
| 1133 | ], |
| 1134 | 'condition': 'checkout_android', |
| 1135 | 'dep_type': 'cipd', |
| 1136 | }, |
| 1137 | |
| 1138 | 'src/third_party/android_deps/repository/com_android_support_leanback_v17': { |
| 1139 | 'packages': [ |
| 1140 | { |
| 1141 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_leanback_v17', |
| 1142 | 'version': 'version:27.0.0-cr0', |
| 1143 | }, |
| 1144 | ], |
| 1145 | 'condition': 'checkout_android', |
| 1146 | 'dep_type': 'cipd', |
| 1147 | }, |
| 1148 | |
| 1149 | 'src/third_party/android_deps/repository/com_android_support_mediarouter_v7': { |
| 1150 | 'packages': [ |
| 1151 | { |
| 1152 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_mediarouter_v7', |
| 1153 | 'version': 'version:27.0.0-cr0', |
| 1154 | }, |
| 1155 | ], |
| 1156 | 'condition': 'checkout_android', |
| 1157 | 'dep_type': 'cipd', |
| 1158 | }, |
| 1159 | |
| 1160 | 'src/third_party/android_deps/repository/com_android_support_multidex': { |
| 1161 | 'packages': [ |
| 1162 | { |
| 1163 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_multidex', |
| 1164 | 'version': 'version:1.0.0-cr0', |
| 1165 | }, |
| 1166 | ], |
| 1167 | 'condition': 'checkout_android', |
| 1168 | 'dep_type': 'cipd', |
| 1169 | }, |
| 1170 | |
| 1171 | 'src/third_party/android_deps/repository/com_android_support_palette_v7': { |
| 1172 | 'packages': [ |
| 1173 | { |
| 1174 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_palette_v7', |
| 1175 | 'version': 'version:27.0.0-cr0', |
| 1176 | }, |
| 1177 | ], |
| 1178 | 'condition': 'checkout_android', |
| 1179 | 'dep_type': 'cipd', |
| 1180 | }, |
| 1181 | |
| 1182 | 'src/third_party/android_deps/repository/com_android_support_preference_leanback_v17': { |
| 1183 | 'packages': [ |
| 1184 | { |
| 1185 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_leanback_v17', |
| 1186 | 'version': 'version:27.0.0-cr0', |
| 1187 | }, |
| 1188 | ], |
| 1189 | 'condition': 'checkout_android', |
| 1190 | 'dep_type': 'cipd', |
| 1191 | }, |
| 1192 | |
| 1193 | 'src/third_party/android_deps/repository/com_android_support_preference_v14': { |
| 1194 | 'packages': [ |
| 1195 | { |
| 1196 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_v14', |
| 1197 | 'version': 'version:27.0.0-cr0', |
| 1198 | }, |
| 1199 | ], |
| 1200 | 'condition': 'checkout_android', |
| 1201 | 'dep_type': 'cipd', |
| 1202 | }, |
| 1203 | |
| 1204 | 'src/third_party/android_deps/repository/com_android_support_preference_v7': { |
| 1205 | 'packages': [ |
| 1206 | { |
| 1207 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_v7', |
| 1208 | 'version': 'version:27.0.0-cr0', |
| 1209 | }, |
| 1210 | ], |
| 1211 | 'condition': 'checkout_android', |
| 1212 | 'dep_type': 'cipd', |
| 1213 | }, |
| 1214 | |
| 1215 | 'src/third_party/android_deps/repository/com_android_support_recyclerview_v7': { |
| 1216 | 'packages': [ |
| 1217 | { |
| 1218 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_recyclerview_v7', |
| 1219 | 'version': 'version:27.0.0-cr0', |
| 1220 | }, |
| 1221 | ], |
| 1222 | 'condition': 'checkout_android', |
| 1223 | 'dep_type': 'cipd', |
| 1224 | }, |
| 1225 | |
| 1226 | 'src/third_party/android_deps/repository/com_android_support_support_annotations': { |
| 1227 | 'packages': [ |
| 1228 | { |
| 1229 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_annotations', |
| 1230 | 'version': 'version:27.0.0-cr0', |
| 1231 | }, |
| 1232 | ], |
| 1233 | 'condition': 'checkout_android', |
| 1234 | 'dep_type': 'cipd', |
| 1235 | }, |
| 1236 | |
| 1237 | 'src/third_party/android_deps/repository/com_android_support_support_compat': { |
| 1238 | 'packages': [ |
| 1239 | { |
| 1240 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_compat', |
| 1241 | 'version': 'version:27.0.0-cr0', |
| 1242 | }, |
| 1243 | ], |
| 1244 | 'condition': 'checkout_android', |
| 1245 | 'dep_type': 'cipd', |
| 1246 | }, |
| 1247 | |
| 1248 | 'src/third_party/android_deps/repository/com_android_support_support_core_ui': { |
| 1249 | 'packages': [ |
| 1250 | { |
| 1251 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_core_ui', |
| 1252 | 'version': 'version:27.0.0-cr0', |
| 1253 | }, |
| 1254 | ], |
| 1255 | 'condition': 'checkout_android', |
| 1256 | 'dep_type': 'cipd', |
| 1257 | }, |
| 1258 | |
| 1259 | 'src/third_party/android_deps/repository/com_android_support_support_core_utils': { |
| 1260 | 'packages': [ |
| 1261 | { |
| 1262 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_core_utils', |
| 1263 | 'version': 'version:27.0.0-cr0', |
| 1264 | }, |
| 1265 | ], |
| 1266 | 'condition': 'checkout_android', |
| 1267 | 'dep_type': 'cipd', |
| 1268 | }, |
| 1269 | |
| 1270 | 'src/third_party/android_deps/repository/com_android_support_support_fragment': { |
| 1271 | 'packages': [ |
| 1272 | { |
| 1273 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_fragment', |
| 1274 | 'version': 'version:27.0.0-cr0', |
| 1275 | }, |
| 1276 | ], |
| 1277 | 'condition': 'checkout_android', |
| 1278 | 'dep_type': 'cipd', |
| 1279 | }, |
| 1280 | |
| 1281 | 'src/third_party/android_deps/repository/com_android_support_support_media_compat': { |
| 1282 | 'packages': [ |
| 1283 | { |
| 1284 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_media_compat', |
| 1285 | 'version': 'version:27.0.0-cr0', |
| 1286 | }, |
| 1287 | ], |
| 1288 | 'condition': 'checkout_android', |
| 1289 | 'dep_type': 'cipd', |
| 1290 | }, |
| 1291 | |
| 1292 | 'src/third_party/android_deps/repository/com_android_support_support_v13': { |
| 1293 | 'packages': [ |
| 1294 | { |
| 1295 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_v13', |
| 1296 | 'version': 'version:27.0.0-cr0', |
| 1297 | }, |
| 1298 | ], |
| 1299 | 'condition': 'checkout_android', |
| 1300 | 'dep_type': 'cipd', |
| 1301 | }, |
| 1302 | |
| 1303 | 'src/third_party/android_deps/repository/com_android_support_support_v4': { |
| 1304 | 'packages': [ |
| 1305 | { |
| 1306 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_v4', |
| 1307 | 'version': 'version:27.0.0-cr0', |
| 1308 | }, |
| 1309 | ], |
| 1310 | 'condition': 'checkout_android', |
| 1311 | 'dep_type': 'cipd', |
| 1312 | }, |
| 1313 | |
| 1314 | 'src/third_party/android_deps/repository/com_android_support_support_vector_drawable': { |
| 1315 | 'packages': [ |
| 1316 | { |
| 1317 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_vector_drawable', |
| 1318 | 'version': 'version:27.0.0-cr0', |
| 1319 | }, |
| 1320 | ], |
| 1321 | 'condition': 'checkout_android', |
| 1322 | 'dep_type': 'cipd', |
| 1323 | }, |
| 1324 | |
| 1325 | 'src/third_party/android_deps/repository/com_android_support_transition': { |
| 1326 | 'packages': [ |
| 1327 | { |
| 1328 | 'package': 'chromium/third_party/android_deps/repository/com_android_support_transition', |
| 1329 | 'version': 'version:27.0.0-cr0', |
| 1330 | }, |
| 1331 | ], |
| 1332 | 'condition': 'checkout_android', |
| 1333 | 'dep_type': 'cipd', |
| 1334 | }, |
| 1335 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1336 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1337 | } |
| 1338 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 1339 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1340 | include_rules = [ |
| 1341 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 1342 | # 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] | 1343 | '+base', |
| 1344 | '+build', |
| 1345 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1346 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 1347 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1348 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 1349 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1350 | '+testing', |
| 1351 | '+third_party/icu/source/common/unicode', |
| 1352 | '+third_party/icu/source/i18n/unicode', |
| 1353 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 1354 | |
| 1355 | # Chromium cannot directly depend on Abseil. |
| 1356 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1357 | ] |
| 1358 | |
| 1359 | |
| 1360 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 1361 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1362 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 1363 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1364 | 'skia', |
| 1365 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 1366 | 'third_party/abseil-cpp', |
Mark Mentovai | ebb9ddd6 | 2017-09-25 17:24:41 | [diff] [blame] | 1367 | 'third_party/breakpad/breakpad', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1368 | 'v8', |
| 1369 | 'win8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 1370 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 1371 | |
| 1372 | |
| 1373 | hooks = [ |
| 1374 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 1375 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 1376 | # first hook so that other things that get/generate into the output |
| 1377 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1378 | 'name': 'landmines', |
| 1379 | 'pattern': '.', |
| 1380 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1381 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1382 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 1383 | ], |
| 1384 | }, |
| 1385 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 1386 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 1387 | # disabled. |
| 1388 | 'name': 'disable_depot_tools_selfupdate', |
| 1389 | 'pattern': '.', |
| 1390 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1391 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 1392 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 1393 | '--disable', |
| 1394 | ], |
| 1395 | }, |
| 1396 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 1397 | # Ensure that we don't accidentally reference any .pyc files whose |
| 1398 | # corresponding .py files have since been deleted. |
| 1399 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1400 | 'name': 'remove_stale_pyc_files', |
| 1401 | 'pattern': '.', |
| 1402 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1403 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1404 | 'src/tools/remove_stale_pyc_files.py', |
| 1405 | 'src/android_webview/tools', |
| 1406 | 'src/build/android', |
| 1407 | 'src/gpu/gles2_conform_support', |
| 1408 | 'src/infra', |
| 1409 | 'src/ppapi', |
| 1410 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 1411 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 1412 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1413 | 'src/third_party/catapult', |
| 1414 | 'src/third_party/closure_compiler/build', |
qyearsley | dfda207b | 2016-07-08 14:16:12 | [diff] [blame] | 1415 | 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 1416 | 'src/tools', |
| 1417 | ], |
| 1418 | }, |
| 1419 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 1420 | # This downloads binaries for Native Client's newlib toolchain. |
| 1421 | # Done in lieu of building the toolchain from scratch as it can take |
| 1422 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1423 | 'name': 'nacltools', |
| 1424 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1425 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1426 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1427 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 1428 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 1429 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 1430 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 1431 | ], |
| 1432 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 1433 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1434 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1435 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1436 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1437 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 1438 | '--arch=arm'], |
| 1439 | }, |
| 1440 | { |
| 1441 | 'name': 'sysroot_arm64', |
| 1442 | 'pattern': '.', |
| 1443 | 'condition': 'checkout_linux and checkout_arm64', |
| 1444 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1445 | '--arch=arm64'], |
| 1446 | }, |
| 1447 | { |
| 1448 | 'name': 'sysroot_x86', |
| 1449 | 'pattern': '.', |
| 1450 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 1451 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1452 | '--arch=x86'], |
| 1453 | }, |
| 1454 | { |
| 1455 | 'name': 'sysroot_mips', |
| 1456 | 'pattern': '.', |
| 1457 | 'condition': 'checkout_linux and checkout_mips', |
| 1458 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1459 | '--arch=mips'], |
| 1460 | }, |
| 1461 | { |
| 1462 | 'name': 'sysroot_x64', |
| 1463 | 'pattern': '.', |
| 1464 | 'condition': 'checkout_linux and checkout_x64', |
| 1465 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 1466 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 1467 | }, |
| 1468 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 1469 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 1470 | 'name': 'ciopfs_linux', |
| 1471 | 'pattern': '.', |
| 1472 | 'condition': 'checkout_win and host_os == "linux"', |
| 1473 | 'action': [ 'python', |
| 1474 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1475 | '--no_resume', |
| 1476 | '--no_auth', |
| 1477 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 1478 | '-s', 'src/build/ciopfs.sha1', |
| 1479 | ] |
| 1480 | }, |
| 1481 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 1482 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1483 | 'name': 'win_toolchain', |
| 1484 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 1485 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1486 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 1487 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 1488 | { |
| 1489 | # Update the Mac toolchain if necessary. |
| 1490 | 'name': 'mac_toolchain', |
| 1491 | 'pattern': '.', |
Rohit Rao | 92489af | 2017-10-12 21:45:48 | [diff] [blame] | 1492 | 'condition': 'checkout_ios or checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 1493 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 1494 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 1495 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 1496 | # debugging when used with clang on Ubuntu Precise. |
| 1497 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 1498 | { |
| 1499 | 'name': 'binutils', |
| 1500 | 'pattern': 'src/third_party/binutils', |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 1501 | 'condition': 'host_os == "linux"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 1502 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 1503 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 1504 | 'src/third_party/binutils/download.py', |
| 1505 | ], |
| 1506 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 1507 | { |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 1508 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 1509 | 'name': 'clang', |
| 1510 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1511 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 1512 | }, |
| 1513 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 1514 | # Mac doesn't use lld so it's not included in the default clang bundle |
| 1515 | # there. lld is however needed in win cross builds, so download it there. |
| 1516 | # Should run after the clang hook. |
| 1517 | 'name': 'lld/mac', |
| 1518 | 'pattern': '.', |
| 1519 | 'condition': 'host_os == "mac" and checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1520 | 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 1521 | }, |
| 1522 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 1523 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1524 | 'name': 'lastchange', |
| 1525 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1526 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1527 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 1528 | }, |
| 1529 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 1530 | # Update GPU lists version string (for gpu/config). |
| 1531 | 'name': 'gpu_lists_version', |
| 1532 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1533 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 1534 | '-m', 'GPU_LISTS_VERSION', |
| 1535 | '--revision-id-only', |
| 1536 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 1537 | }, |
| 1538 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 1539 | # Update skia_commit_hash.h. |
| 1540 | 'name': 'lastchange_skia', |
| 1541 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1542 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 1543 | '-m', 'SKIA_COMMIT_HASH', |
| 1544 | '-s', 'src/third_party/skia', |
| 1545 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 1546 | }, |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 1547 | # Pull GN binaries. This needs to be before running GYP below. |
| 1548 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1549 | 'name': 'gn_win', |
| 1550 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1551 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1552 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1553 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1554 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1555 | '--no_auth', |
| 1556 | '--bucket', 'chromium-gn', |
| 1557 | '-s', 'src/buildtools/win/gn.exe.sha1', |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 1558 | ], |
| 1559 | }, |
| 1560 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1561 | 'name': 'gn_mac', |
| 1562 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1563 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1564 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1565 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1566 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1567 | '--no_auth', |
| 1568 | '--bucket', 'chromium-gn', |
| 1569 | '-s', 'src/buildtools/mac/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 1570 | ], |
| 1571 | }, |
| 1572 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1573 | 'name': 'gn_linux64', |
| 1574 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1575 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1576 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1577 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1578 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1579 | '--no_auth', |
| 1580 | '--bucket', 'chromium-gn', |
| 1581 | '-s', 'src/buildtools/linux64/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 1582 | ], |
| 1583 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 1584 | # Pull clang-format binaries using checked-in hashes. |
| 1585 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1586 | 'name': 'clang_format_win', |
| 1587 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1588 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1589 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1590 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1591 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1592 | '--no_auth', |
| 1593 | '--bucket', 'chromium-clang-format', |
| 1594 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 1595 | ], |
| 1596 | }, |
| 1597 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1598 | 'name': 'clang_format_mac', |
| 1599 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1600 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1601 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1602 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1603 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1604 | '--no_auth', |
| 1605 | '--bucket', 'chromium-clang-format', |
| 1606 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 1607 | ], |
| 1608 | }, |
| 1609 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1610 | 'name': 'clang_format_linux', |
| 1611 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1612 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1613 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1614 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1615 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1616 | '--no_auth', |
| 1617 | '--bucket', 'chromium-clang-format', |
| 1618 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 1619 | ], |
| 1620 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 1621 | # Pull rc binaries using checked-in hashes. |
| 1622 | { |
| 1623 | 'name': 'rc_win', |
| 1624 | 'pattern': '.', |
| 1625 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1626 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 1627 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1628 | '--no_resume', |
| 1629 | '--no_auth', |
| 1630 | '--bucket', 'chromium-browser-clang/rc', |
| 1631 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 1632 | ], |
| 1633 | }, |
| 1634 | { |
| 1635 | 'name': 'rc_mac', |
| 1636 | 'pattern': '.', |
| 1637 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1638 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 1639 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1640 | '--no_resume', |
| 1641 | '--no_auth', |
| 1642 | '--bucket', 'chromium-browser-clang/rc', |
| 1643 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 1644 | ], |
| 1645 | }, |
| 1646 | { |
| 1647 | 'name': 'rc_linux', |
| 1648 | 'pattern': '.', |
| 1649 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1650 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 1651 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1652 | '--no_resume', |
| 1653 | '--no_auth', |
| 1654 | '--bucket', 'chromium-browser-clang/rc', |
| 1655 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 1656 | ] |
| 1657 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 1658 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 1659 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 1660 | 'pattern': '.', |
| 1661 | 'action': [ 'download_from_google_storage', |
| 1662 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 1663 | '--extract', |
| 1664 | '--no_auth', |
| 1665 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 1666 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 1667 | ], |
| 1668 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 1669 | # Pull order files for the win/clang build. |
| 1670 | { |
| 1671 | 'name': 'orderfiles_win', |
| 1672 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 1673 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1674 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 1675 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1676 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 1677 | '--no_auth', |
| 1678 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 1679 | '-d', 'src/chrome/build', |
| 1680 | ], |
| 1681 | }, |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1682 | # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 1683 | { |
| 1684 | 'name': 'luci-go_win', |
| 1685 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1686 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1687 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1688 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1689 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1690 | '--no_auth', |
| 1691 | '--bucket', 'chromium-luci', |
| 1692 | '-d', 'src/tools/luci-go/win64', |
| 1693 | ], |
| 1694 | }, |
| 1695 | { |
| 1696 | 'name': 'luci-go_mac', |
| 1697 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1698 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1699 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1700 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1701 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1702 | '--no_auth', |
| 1703 | '--bucket', 'chromium-luci', |
| 1704 | '-d', 'src/tools/luci-go/mac64', |
| 1705 | ], |
| 1706 | }, |
| 1707 | { |
| 1708 | 'name': 'luci-go_linux', |
| 1709 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1710 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1711 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1712 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1713 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1714 | '--no_auth', |
| 1715 | '--bucket', 'chromium-luci', |
| 1716 | '-d', 'src/tools/luci-go/linux64', |
| 1717 | ], |
| 1718 | }, |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 1719 | # Pull the Syzygy binaries, used for optimization and instrumentation. |
Sigurdur Asgeirsson | 69d0bcd | 2018-03-29 21:50:51 | [diff] [blame] | 1720 | # Remove this as soon as the zap_timestamp.exe utility is no longer used. |
| 1721 | # See https://crbug.com/821764#c3. |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 1722 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1723 | 'name': 'syzygy-binaries', |
| 1724 | 'pattern': '.', |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 1725 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1726 | 'action': ['python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1727 | 'src/build/get_syzygy_binaries.py', |
| 1728 | '--output-dir=src/third_party/syzygy/binaries', |
Sebastien Marchand | 75ac1cc | 2017-12-06 16:58:38 | [diff] [blame] | 1729 | '--revision=8164b24ebde9c5649c9a09e88a7fc0b0fcbd1bc5', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1730 | '--overwrite', |
sebmarchand | af7cc2f | 2016-10-04 18:22:25 | [diff] [blame] | 1731 | '--copy-dia-binaries', |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 1732 | ], |
| 1733 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 1734 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1735 | 'name': 'apache_win32', |
| 1736 | 'pattern': '\\.sha1', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1737 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1738 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1739 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1740 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1741 | '--directory', |
| 1742 | '--recursive', |
| 1743 | '--no_auth', |
| 1744 | '--num_threads=16', |
| 1745 | '--bucket', 'chromium-apache-win32', |
| 1746 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 1747 | ], |
| 1748 | }, |
| 1749 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1750 | 'name': 'msan_chained_origins', |
| 1751 | 'pattern': '.', |
| 1752 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1753 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1754 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1755 | "--no_resume", |
| 1756 | "--no_auth", |
| 1757 | "--bucket", "chromium-instrumented-libraries", |
| 1758 | "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1", |
| 1759 | ], |
| 1760 | }, |
| 1761 | { |
| 1762 | 'name': 'msan_no_origins', |
| 1763 | 'pattern': '.', |
| 1764 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1765 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1766 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1767 | "--no_resume", |
| 1768 | "--no_auth", |
| 1769 | "--bucket", "chromium-instrumented-libraries", |
| 1770 | "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1", |
| 1771 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 1772 | }, |
| 1773 | { |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1774 | "name": "wasm_fuzzer", |
| 1775 | "pattern": ".", |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1776 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1777 | 'src/third_party/depot_tools/download_from_google_storage.py', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1778 | "--no_resume", |
| 1779 | "--no_auth", |
| 1780 | "-u", |
| 1781 | "--bucket", "v8-wasm-fuzzer", |
ahaas | ec987e5d | 2017-05-17 11:25:36 | [diff] [blame] | 1782 | "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1", |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1783 | ], |
| 1784 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1785 | |
| 1786 | # Pull down Node binaries for WebUI toolchain. |
| 1787 | { |
| 1788 | 'name': 'node_linux64', |
| 1789 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1790 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1791 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1792 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1793 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1794 | '--extract', |
| 1795 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1796 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1797 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 1798 | ], |
| 1799 | }, |
| 1800 | { |
| 1801 | 'name': 'node_mac', |
| 1802 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1803 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1804 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1805 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1806 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1807 | '--extract', |
| 1808 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1809 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1810 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 1811 | ], |
| 1812 | }, |
| 1813 | { |
| 1814 | 'name': 'node_win', |
| 1815 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1816 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1817 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1818 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1819 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1820 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1821 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1822 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 1823 | ], |
| 1824 | }, |
| 1825 | |
| 1826 | # Pull down NPM dependencies for WebUI toolchain. |
| 1827 | { |
| 1828 | 'name': 'webui_node_modules', |
| 1829 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1830 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1831 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1832 | '--no_resume', |
| 1833 | '--extract', |
| 1834 | '--no_auth', |
| 1835 | '--bucket', 'chromium-nodejs', |
| 1836 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 1837 | ], |
| 1838 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1839 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1840 | # Download Telemetry's binary dependencies via conditionals |
| 1841 | { |
| 1842 | 'name': 'checkout_telemetry_binary_dependencies', |
| 1843 | 'condition': 'checkout_telemetry_dependencies', |
| 1844 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1845 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1846 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 1847 | ], |
| 1848 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 1849 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 1850 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 1851 | { |
| 1852 | 'name': 'checkout_telemetry_benchmark_deps', |
| 1853 | 'condition': 'checkout_telemetry_dependencies', |
| 1854 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 1855 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 1856 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 1857 | '-f', |
| 1858 | ], |
| 1859 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1860 | |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1861 | # Download Telemetry's binary dependencies |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1862 | # TODO(crbug.com/780967) - remove this once the bots are setting the |
| 1863 | # `checkout_telemetry_dependencies` condition. |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1864 | { |
| 1865 | 'name': 'fetch_telemetry_binary_dependencies', |
| 1866 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1867 | 'action': [ 'vpython', |
Dirk Pranke | 4c3098b | 2017-10-10 18:57:22 | [diff] [blame] | 1868 | 'src/tools/perf/conditionally_execute', |
| 1869 | '--gyp-condition', 'fetch_telemetry_dependencies=1', |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1870 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 1871 | ], |
| 1872 | }, |
John Budorick | da2bfbb | 2017-05-30 22:17:59 | [diff] [blame] | 1873 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1874 | # This is used to ensure that all network operations are properly |
| 1875 | # annotated so we can document what they're for. |
| 1876 | { |
| 1877 | 'name': 'tools_traffic_annotation_linux', |
| 1878 | 'pattern': '.', |
| 1879 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1880 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1881 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1882 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1883 | '--no_auth', |
| 1884 | '--num_threads=4', |
| 1885 | '--bucket', 'chromium-tools-traffic_annotation', |
| 1886 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 1887 | ], |
| 1888 | }, |
| 1889 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 1890 | # This is used to ensure that all network operations are properly |
| 1891 | # annotated so we can document what they're for. |
| 1892 | { |
| 1893 | 'name': 'tools_traffic_annotation_windows', |
| 1894 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 1895 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1896 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 1897 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1898 | '--no_resume', |
| 1899 | '--no_auth', |
| 1900 | '--num_threads=4', |
| 1901 | '--bucket', 'chromium-tools-traffic_annotation', |
| 1902 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 1903 | ], |
| 1904 | }, |
| 1905 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1906 | # Pull down Zucchini test data. |
| 1907 | { |
| 1908 | 'name': 'zucchini_testdata', |
| 1909 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1910 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1911 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1912 | '--no_resume', |
| 1913 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 1914 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 1915 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 1916 | '--recursive', |
| 1917 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1918 | ], |
| 1919 | }, |
| 1920 | |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1921 | { |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1922 | # We used to use src as a CIPD root. We moved it to a different directory |
| 1923 | # in crrev.com/c/930178 but left the clobber here to ensure that that CL |
| 1924 | # could be reverted safely. This can be safely removed once crbug.com/794764 |
| 1925 | # is resolved. |
| 1926 | 'name': 'Android Clobber Deprecated CIPD Root', |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 1927 | 'pattern': '.', |
| 1928 | 'condition': 'checkout_android', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1929 | 'action': ['src/build/cipd/clobber_cipd_root.py', |
| 1930 | '--root', 'src', |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 1931 | ], |
| 1932 | }, |
| 1933 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 1934 | 'name': 'Fetch Android AFDO profile', |
| 1935 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 1936 | 'condition': 'checkout_android or checkout_linux', |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 1937 | 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'], |
| 1938 | }, |
| 1939 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1940 | # This downloads SDK extras and puts them in the |
| 1941 | # third_party/android_tools/sdk/extras directory. |
| 1942 | 'name': 'sdkextras', |
| 1943 | 'pattern': '.', |
| 1944 | 'condition': 'checkout_android', |
| 1945 | # When adding a new sdk extras package to download, add the package |
| 1946 | # directory and zip file to .gitignore in third_party/android_tools. |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1947 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 1948 | 'src/build/android/play_services/update.py', |
| 1949 | 'download' |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1950 | ], |
| 1951 | }, |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 1952 | # Download checkstyle for use in PRESUBMIT for Java changes. |
| 1953 | { |
| 1954 | 'name': 'checkstyle', |
| 1955 | 'pattern': '.', |
| 1956 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 1957 | 'condition': 'checkout_android or checkout_linux', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1958 | 'action': [ 'python', |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 1959 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1960 | '--no_resume', |
| 1961 | '--no_auth', |
| 1962 | '--bucket', 'chromium-android-tools/checkstyle', |
| 1963 | '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1' |
| 1964 | ], |
| 1965 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1966 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1967 | 'name': 'gvr_static_shim_android_arm', |
| 1968 | 'pattern': '\\.sha1', |
| 1969 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1970 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1971 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1972 | '--no_resume', |
| 1973 | '--no_auth', |
| 1974 | '--bucket', 'chromium-gvr-static-shim', |
| 1975 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1976 | ], |
| 1977 | }, |
| 1978 | { |
| 1979 | 'name': 'gvr_static_shim_android_arm64', |
| 1980 | 'pattern': '\\.sha1', |
| 1981 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 1982 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1983 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1984 | '--no_resume', |
| 1985 | '--no_auth', |
| 1986 | '--bucket', 'chromium-gvr-static-shim', |
| 1987 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1', |
thakis | 973bb243 | 2017-05-24 15:27:14 | [diff] [blame] | 1988 | ], |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1989 | }, |
| 1990 | { |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 1991 | 'name': 'gvr_static_shim_custom_libcxx_android_arm', |
| 1992 | 'pattern': '\\.sha1', |
| 1993 | 'condition': 'checkout_android', |
| 1994 | 'action': [ 'python', |
| 1995 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1996 | '--no_resume', |
| 1997 | '--no_auth', |
| 1998 | '--bucket', 'chromium-gvr-static-shim', |
| 1999 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_custom_libcxx_arm.a.sha1', |
| 2000 | ], |
| 2001 | }, |
| 2002 | { |
| 2003 | 'name': 'gvr_static_shim_custom_libcxx_android_arm64', |
| 2004 | 'pattern': '\\.sha1', |
| 2005 | 'condition': 'checkout_android', |
| 2006 | 'action': [ 'python', |
| 2007 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2008 | '--no_resume', |
| 2009 | '--no_auth', |
| 2010 | '--bucket', 'chromium-gvr-static-shim', |
| 2011 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_custom_libcxx_arm64.a.sha1', |
| 2012 | ], |
| 2013 | }, |
| 2014 | { |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2015 | 'name': 'vr_assets', |
| 2016 | 'pattern': '.', |
Tibor Goldschwendt | ad8048f | 2018-02-05 18:26:00 | [diff] [blame] | 2017 | 'condition': 'checkout_src_internal and checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2018 | 'action': ['python', |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2019 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2020 | '--bucket', 'chrome-vr-assets', |
| 2021 | '--recursive', |
| 2022 | '--directory', |
Tibor Goldschwendt | fd6806b8 | 2018-02-14 22:32:50 | [diff] [blame] | 2023 | 'src/chrome/browser/resources/vr/assets/google_chrome', |
Tibor Goldschwendt | 21235c8 | 2018-01-08 23:00:02 | [diff] [blame] | 2024 | ], |
| 2025 | }, |
| 2026 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2027 | 'name': 'vr_controller_test_api', |
| 2028 | 'pattern': '\\.sha1', |
| 2029 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2030 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2031 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2032 | '--no_resume', |
| 2033 | '--no_auth', |
| 2034 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 2035 | '-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] | 2036 | ], |
| 2037 | }, |
| 2038 | # Download VR test APKs only if the environment variable is set |
| 2039 | { |
| 2040 | 'name': 'vr_test_apks', |
| 2041 | 'pattern': '.', |
| 2042 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2043 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2044 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2045 | ], |
| 2046 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2047 | # Download Oculus SDK if appropriate. |
| 2048 | { |
| 2049 | 'name': 'libovr', |
| 2050 | 'pattern': '.', |
| 2051 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2052 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2053 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2054 | '--bucket', 'chrome-oculus-sdk', |
| 2055 | '--recursive', |
| 2056 | '--num_threads=10', |
| 2057 | '--directory', |
| 2058 | 'src/third_party/libovr/src', |
| 2059 | ], |
| 2060 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2061 | { |
| 2062 | # Pull doclava binaries if building for Android. |
| 2063 | 'name': 'doclava', |
| 2064 | 'pattern': '.', |
| 2065 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2066 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2067 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2068 | ], |
| 2069 | }, |
| 2070 | |
| 2071 | { |
| 2072 | 'name': 'fuchsia_sdk', |
| 2073 | 'pattern': '.', |
| 2074 | 'condition': 'checkout_fuchsia', |
| 2075 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2076 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2077 | 'src/build/fuchsia/update_sdk.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2078 | ], |
| 2079 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2080 | |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2081 | # Download CrOS simplechrome artifacts. The first hooks is for boards that |
| 2082 | # support VM images, the second hook for all other boards. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2083 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2084 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2085 | 'pattern': '.', |
| 2086 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2087 | '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] | 2088 | 'action': [ |
| 2089 | 'src/third_party/chromite/bin/cros', |
| 2090 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 2091 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2092 | '--use-external-config', |
| 2093 | '--nogn-gen', |
| 2094 | '--download-vm', |
| 2095 | '--board={cros_board}', |
| 2096 | '--cache-dir=src/build/cros_cache/', |
Benjamin Pastene | fab64fff | 2018-04-18 22:21:16 | [diff] [blame] | 2097 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 2098 | # enough to eject old toolchains from the cache. |
| 2099 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2100 | '--log-level=error', |
| 2101 | 'exit', |
| 2102 | ], |
| 2103 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2104 | { |
| 2105 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 2106 | 'pattern': '.', |
| 2107 | # Building for CrOS is only supported on linux currently. |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 2108 | '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] | 2109 | 'action': [ |
| 2110 | 'src/third_party/chromite/bin/cros', |
| 2111 | 'chrome-sdk', |
| 2112 | '--nogoma', |
| 2113 | '--use-external-config', |
| 2114 | '--nogn-gen', |
| 2115 | '--board={cros_board}', |
| 2116 | '--cache-dir=src/build/cros_cache/', |
| 2117 | '--log-level=error', |
| 2118 | 'exit', |
| 2119 | ], |
| 2120 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2121 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2122 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 2123 | { |
| 2124 | 'name': 'vpython_common', |
| 2125 | 'pattern': '.', |
| 2126 | 'action': [ 'vpython', |
| 2127 | '-vpython-spec', 'src/.vpython', |
| 2128 | '-vpython-tool', 'install', |
| 2129 | ], |
| 2130 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2131 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 2132 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2133 | recursedeps = [ |
bungeman | 1835f98 | 2016-09-28 18:33:22 | [diff] [blame] | 2134 | # buildtools provides clang_format, libc++, and libc++abi |
| 2135 | 'src/buildtools', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2136 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 2137 | ("src/third_party/angle", "DEPS.chromium"), |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 2138 | # src-internal has its own DEPS file to pull additional internal repos |
| 2139 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2140 | ] |