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 = [ |
Johann | 5c03fd4 | 2017-11-08 15:22:17 | [diff] [blame] | 31 | 'checkout_libaom', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 32 | 'checkout_nacl', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 33 | 'checkout_oculus_sdk', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 34 | ] |
| 35 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 36 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 37 | vars = { |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 38 | # By default, we should check out everything needed to run on the main |
| 39 | # chromium waterfalls. This var can be also be set to "small", in order |
| 40 | # to skip things are not strictly needed to build chromium for development |
| 41 | # purposes. |
| 42 | 'checkout_configuration': 'default', |
| 43 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 44 | # Check out and download nacl by default. This can be disabled e.g. with |
| 45 | # custom_vars. |
| 46 | 'checkout_nacl': True, |
| 47 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 48 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 49 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 50 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 51 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 52 | # Fetch the additional packages and files needed to run all of the |
| 53 | # telemetry tests. This is false by default as some stuff is only |
| 54 | # privately accessible. |
| 55 | 'checkout_telemetry_dependencies': False, |
| 56 | |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 57 | # libaom provides support for AV1 but the bitstream is not frozen. |
Johann | 80428a9 | 2017-12-04 21:56:28 | [diff] [blame] | 58 | 'checkout_libaom': True, |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 59 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 60 | # By default do not check out the Oculus SDK. Only available for Googlers. |
| 61 | 'checkout_oculus_sdk' : False, |
| 62 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 63 | # TODO(dpranke): change to != "small" once != is supported. |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 64 | 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"', |
Dirk Pranke | 4c3098b | 2017-10-10 18:57:22 | [diff] [blame] | 65 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 66 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame^] | 67 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 68 | 'aomedia_git': 'https://aomedia.googlesource.com', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 69 | 'chromium_git': 'https://chromium.googlesource.com', |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 70 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
| 71 | 'pdfium_git': 'https://pdfium.googlesource.com', |
| 72 | 'boringssl_git': 'https://boringssl.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 73 | 'skia_git': 'https://skia.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 74 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 75 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 76 | # the commit queue can handle CLs rolling sfntly |
| 77 | # and whatever else without interference from each other. |
thestig | 930abad | 2017-04-18 02:44:33 | [diff] [blame] | 78 | 'sfntly_revision': '2439bd08ff93d4dce761dd6b825917938bd35a4f', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 79 | # Three lines of non-changing comments so that |
| 80 | # the commit queue can handle CLs rolling Skia |
| 81 | # and whatever else without interference from each other. |
[email protected] | 716b641 | 2018-01-08 20:57:44 | [diff] [blame] | 82 | 'skia_revision': 'c5980d0aa3e97f07a4f5bc413a2c5bc5ed3bc973', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 83 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 84 | # the commit queue can handle CLs rolling V8 |
| 85 | # and whatever else without interference from each other. |
v8-autoroll | 2be4521 | 2018-01-06 00:29:17 | [diff] [blame] | 86 | 'v8_revision': '0c287882ea233f299a91f6b72b56d8faaecf52c0', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 87 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 88 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 89 | # and whatever else without interference from each other. |
Marc-Antoine Ruel | 76c4676 | 2017-12-06 23:10:43 | [diff] [blame] | 90 | 'swarming_revision': '4bd9152f8a975d57c972c071dfb4ddf668e02200', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 91 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 92 | # the commit queue can handle CLs rolling ANGLE |
| 93 | # and whatever else without interference from each other. |
[email protected] | 286c3ec70 | 2018-01-08 18:14:11 | [diff] [blame] | 94 | 'angle_revision': '949b4f07fd1ef5b208136fe38327c28c95f18928', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 95 | # Three lines of non-changing comments so that |
| 96 | # the commit queue can handle CLs rolling build tools |
| 97 | # and whatever else without interference from each other. |
Scott Graham | e6b4822 | 2017-12-12 19:57:12 | [diff] [blame] | 98 | 'buildtools_revision': '1be57dc4c2c68fa564ee258a3af0cf8003007edf', |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 99 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 100 | # the commit queue can handle CLs rolling SwiftShader |
| 101 | # and whatever else without interference from each other. |
Alexis Hetu | a3ddd71 | 2017-12-04 23:28:43 | [diff] [blame] | 102 | 'swiftshader_revision': '05bcbe6b7a2dffc284b38ad0f2731d2894972cd8', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 103 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 104 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 105 | # and whatever else without interference from each other. |
[email protected] | f54dda3 | 2018-01-08 21:25:06 | [diff] [blame] | 106 | 'pdfium_revision': '64204f591bc27976a7123ec5a88558542486bb3f', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 107 | # Three lines of non-changing comments so that |
| 108 | # the commit queue can handle CLs rolling openmax_dl |
| 109 | # and whatever else without interference from each other. |
Sergey Ulanov | 31ba2a0 | 2017-12-14 01:44:33 | [diff] [blame] | 110 | 'openmax_dl_revision': 'b611996df3b8f6b151339d22c12c21f167009cb6', |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 111 | # Three lines of non-changing comments so that |
| 112 | # the commit queue can handle CLs rolling BoringSSL |
| 113 | # and whatever else without interference from each other. |
Steven Valdez | d89f40844 | 2018-01-03 21:17:02 | [diff] [blame] | 114 | 'boringssl_revision': 'ef16f19ef2ea7364a3645c8c48d68f91855305c7', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 115 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 116 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 117 | # and whatever else without interference from each other. |
Mark Mentovai | 9ed14316 | 2017-07-24 19:04:47 | [diff] [blame] | 118 | 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 119 | # Three lines of non-changing comments so that |
| 120 | # the commit queue can handle CLs rolling lighttpd |
| 121 | # and whatever else without interference from each other. |
| 122 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 123 | # Three lines of non-changing comments so that |
| 124 | # the commit queue can handle CLs rolling lss |
| 125 | # and whatever else without interference from each other. |
Torne (Richard Coles) | 9a6106e | 2017-10-20 17:48:17 | [diff] [blame] | 126 | 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 127 | # Three lines of non-changing comments so that |
| 128 | # the commit queue can handle CLs rolling NaCl |
| 129 | # and whatever else without interference from each other. |
[email protected] | 280a28d8 | 2017-10-01 00:05:41 | [diff] [blame] | 130 | 'nacl_revision': '7f07816e463da403255f0ab4f6d88004450dd09d', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 131 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 132 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 133 | # and whatever else without interference from each other. |
Dominik Röttsches | 37d8b63 | 2017-12-12 14:06:43 | [diff] [blame] | 134 | 'freetype_revision': '2c048a8a622e9f44f255aa3316026f124ac9ecbc', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 135 | # Three lines of non-changing comments so that |
| 136 | # the commit queue can handle CLs rolling catapult |
| 137 | # and whatever else without interference from each other. |
[email protected] | feb95a14 | 2018-01-08 17:09:22 | [diff] [blame] | 138 | 'catapult_revision': '34323dc0a2a96eab02fc28f64499c8473c473395', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 139 | # Three lines of non-changing comments so that |
| 140 | # the commit queue can handle CLs rolling libFuzzer |
| 141 | # and whatever else without interference from each other. |
Jonathan Metzman | a86dd47 | 2017-12-15 20:43:39 | [diff] [blame] | 142 | 'libfuzzer_revision': 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 143 | # Three lines of non-changing comments so that |
| 144 | # the commit queue can handle CLs rolling devtools-node-modules |
| 145 | # and whatever else without interference from each other. |
Will Chen | fa87418 | 2018-01-03 19:03:26 | [diff] [blame] | 146 | 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 147 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 148 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 149 | # and whatever else without interference from each other. |
Jonathan Metzman | a54e5af6 | 2017-11-01 19:29:06 | [diff] [blame] | 150 | 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 151 | } |
| 152 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 153 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 154 | # If you need to add a new host, contact chrome infrastracture team. |
| 155 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 156 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 157 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 158 | 'boringssl.googlesource.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 159 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 160 | 'chromium.googlesource.com', |
| 161 | 'pdfium.googlesource.com', |
| 162 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 163 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 164 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 165 | ] |
| 166 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 167 | deps = { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 168 | 'src/buildtools': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 169 | Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'), |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 170 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 171 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 172 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 173 | 'condition': 'checkout_mac', |
| 174 | }, |
| 175 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 176 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 177 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 178 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 179 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 180 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 181 | |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 182 | 'src/chrome/test/data/vr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 183 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 184 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 185 | 'src/ios/third_party/earl_grey/src': { |
Mike Baxley | c1441e7 | 2017-11-03 18:26:47 | [diff] [blame] | 186 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '2fd8a7d4b76f820fb95bce495c0ceb324dbe3edb', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 187 | 'condition': 'checkout_ios', |
| 188 | }, |
| 189 | |
| 190 | 'src/ios/third_party/fishhook/src': { |
| 191 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 192 | 'condition': 'checkout_ios', |
| 193 | }, |
| 194 | |
| 195 | 'src/ios/third_party/gcdwebserver/src': { |
| 196 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 197 | 'condition': 'checkout_ios', |
| 198 | }, |
| 199 | |
| 200 | 'src/ios/third_party/material_components_ios/src': { |
iOS Autoroller | bb53e83 | 2018-01-04 06:59:52 | [diff] [blame] | 201 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'e6f6b5f6a28df8c2212441978394f77725e4e9c3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 202 | 'condition': 'checkout_ios', |
| 203 | }, |
| 204 | |
| 205 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 206 | '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] | 207 | 'condition': 'checkout_ios', |
| 208 | }, |
| 209 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 210 | 'src/ios/third_party/material_internationalization_ios/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 211 | '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] | 212 | 'condition': 'checkout_ios', |
| 213 | }, |
| 214 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 215 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
| 216 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
| 217 | 'condition': 'checkout_ios', |
| 218 | }, |
| 219 | |
| 220 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
| 221 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81', |
| 222 | 'condition': 'checkout_ios', |
| 223 | }, |
| 224 | |
| 225 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 226 | '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] | 227 | 'condition': 'checkout_ios', |
| 228 | }, |
| 229 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 230 | 'src/ios/third_party/motion_interchange_objc/src': { |
Louis Romero | 2c7e321c | 2017-12-21 10:38:13 | [diff] [blame] | 231 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 232 | 'condition': 'checkout_ios', |
| 233 | }, |
| 234 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 235 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 409d7735 | 2017-12-22 02:30:46 | [diff] [blame] | 236 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + 'ff39ecc69fdee46d388cc9f882201d54c3d5039c', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 237 | 'condition': 'checkout_ios', |
| 238 | }, |
| 239 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 240 | 'src/ios/third_party/motion_transitioning_objc/src': { |
| 241 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6', |
| 242 | 'condition': 'checkout_ios', |
| 243 | }, |
| 244 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 245 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 246 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 247 | 'condition': 'checkout_ios', |
| 248 | }, |
| 249 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 250 | 'src/media/cdm/api': |
Xiaohan Wang | 7aed34a | 2017-12-07 20:45:56 | [diff] [blame] | 251 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'eed9e92ec7789141c37ac0ee26b8bef4f2eb93e7', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 252 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 253 | 'src/native_client': { |
| 254 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 255 | 'condition': 'checkout_nacl', |
| 256 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 257 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 258 | 'src/third_party/SPIRV-Tools/src': |
| 259 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 260 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 261 | 'src/third_party/android_protobuf/src': { |
| 262 | 'url': Var('chromium_git') + '/external/android_protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
| 263 | 'condition': 'checkout_android', |
| 264 | }, |
| 265 | |
| 266 | 'src/third_party/android_tools': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 267 | 'url': Var('chromium_git') + '/android_tools.git' + '@' + '7d781b3544ef67dfa8c7c0c1a347b818c49c42bc', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 268 | 'condition': 'checkout_android', |
| 269 | }, |
| 270 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 271 | 'src/third_party/angle': |
| 272 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 273 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 274 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 275 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 276 | 'condition': 'checkout_android', |
| 277 | }, |
| 278 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 279 | 'src/third_party/auto/src': { |
| 280 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '71802f2ae74dae2744abd999f8434e13055c4ee3', |
| 281 | 'condition': 'checkout_android', |
| 282 | }, |
| 283 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 284 | 'src/third_party/bidichecker': |
| 285 | Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0', |
| 286 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 287 | 'src/third_party/bison': { |
| 288 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 289 | 'condition': 'checkout_win', |
| 290 | }, |
| 291 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 292 | 'src/third_party/boringssl/src': |
| 293 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 294 | |
| 295 | 'src/third_party/breakpad/breakpad': |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 296 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '4a02ec03038d9d6f870f42d5070591512f488db0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 297 | |
| 298 | 'src/third_party/catapult': |
| 299 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 300 | |
| 301 | 'src/third_party/ced/src': |
| 302 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9', |
| 303 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 304 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 305 | 'src/third_party/chromite': { |
glevin | 1edc27d | 2018-01-04 22:26:37 | [diff] [blame] | 306 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'cb67c15aeb0b4f87b2bb278a8fdd651e61862895', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 307 | 'condition': 'checkout_linux', |
| 308 | }, |
| 309 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 310 | 'src/third_party/cld_3/src': |
| 311 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'ae02d6b8a2af41e87c956c7c7d3f651a8b7b9e79', |
| 312 | |
| 313 | 'src/third_party/colorama/src': |
| 314 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 315 | |
| 316 | 'src/third_party/crc32c/src': |
Victor Costan | f05fce32 | 2017-10-02 20:25:24 | [diff] [blame] | 317 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '0f771ed5ef83556451e1736f22b1a11054dc81c3', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 318 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 319 | # For Linux and Chromium OS. |
| 320 | 'src/third_party/cros_system_api': { |
Bailey Berro | 2a8a139 | 2018-01-04 23:08:47 | [diff] [blame] | 321 | 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '9efc03a3dca4b439e0ee7aa940009c73779a2b75', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 322 | 'condition': 'checkout_linux', |
| 323 | }, |
| 324 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 325 | 'src/third_party/custom_tabs_client/src': { |
Lei Tian | f423fcee | 2017-12-21 01:24:26 | [diff] [blame] | 326 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a0b6c6f7db4127c191ebb9ef008609224658edb2', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 327 | 'condition': 'checkout_android', |
| 328 | }, |
| 329 | |
| 330 | 'src/third_party/depot_tools': |
[email protected] | c42d4c58 | 2018-01-05 17:53:24 | [diff] [blame] | 331 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'df27bf6f0034ac718433f8c745f9229514aca960', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 332 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 333 | 'src/third_party/devtools-node-modules': |
| 334 | 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] | 335 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 336 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | f1f82a1 | 2017-12-13 15:52:40 | [diff] [blame] | 337 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '60b46718e28f553ab57e3d2bbda5b3b41456f417', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 338 | |
| 339 | 'src/third_party/elfutils/src': { |
| 340 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
| 341 | 'condition': 'checkout_android', |
| 342 | }, |
| 343 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 344 | 'src/third_party/errorprone/lib': { |
Peter Wen | 6977adf | 2017-12-20 16:29:29 | [diff] [blame] | 345 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0fce89415c910ed2196f4bddf601ffddd90504fa', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 346 | 'condition': 'checkout_android', |
| 347 | }, |
| 348 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 349 | 'src/third_party/ffmpeg': |
Dirk Pranke | 69629897 | 2017-12-20 20:16:56 | [diff] [blame] | 350 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '423f74fab02ff573b52abd542eb5dfdadaa05cf4', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 351 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 352 | 'src/third_party/findbugs': { |
John Budorick | 79bf00a | 2017-11-10 18:22:19 | [diff] [blame] | 353 | 'url': Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '4275d9ac8610db6b1bc9a5e887f97e41b33fac67', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 354 | 'condition': 'checkout_android', |
| 355 | }, |
| 356 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 357 | 'src/third_party/flac': |
| 358 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '7d0f5b3a173ffe98db08057d1f52b7787569e0a6', |
| 359 | |
| 360 | 'src/third_party/flatbuffers/src': |
| 361 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290', |
| 362 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 363 | # Used for embedded builds. CrOS & Linux use the system version. |
| 364 | 'src/third_party/fontconfig/src': { |
Tom Anderson | 34db191c | 2017-12-13 22:36:48 | [diff] [blame] | 365 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'b546940435ebfb0df575bc7a2350d1e913919c34', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 366 | 'condition': 'checkout_linux', |
| 367 | }, |
| 368 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 369 | 'src/third_party/freetype/src': |
| 370 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 371 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 372 | # Chrome OS touchpad gestures library. |
| 373 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 374 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 375 | 'condition': 'checkout_linux', |
| 376 | }, |
| 377 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 378 | 'src/third_party/glslang/src': |
| 379 | Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + '210c6bf4d8119dc5f8ac21da2d4c87184f7015e0', |
| 380 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 381 | 'src/third_party/google_toolbox_for_mac/src': { |
| 382 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 383 | 'condition': 'checkout_ios or checkout_mac', |
| 384 | }, |
| 385 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 386 | 'src/third_party/googletest/src': |
[email protected] | a81b7e7 | 2017-12-06 15:09:45 | [diff] [blame] | 387 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '247a3d8e5e5d403f7fcacdb8ccc71e5059f15daa', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 388 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 389 | # GNU binutils assembler for x86-32. |
| 390 | 'src/third_party/gnu_binutils': { |
| 391 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 392 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 393 | }, |
| 394 | |
| 395 | 'src/third_party/gperf': { |
| 396 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 397 | 'condition': 'checkout_win', |
| 398 | }, |
| 399 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 400 | 'src/third_party/gvr-android-sdk/src': { |
Biao She | 75f62492 | 2017-11-16 18:44:17 | [diff] [blame] | 401 | 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '6aef4ab34276aac81ee38f1cb1d034de7fc4a4eb', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 402 | 'condition': 'checkout_android', |
| 403 | }, |
| 404 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 405 | 'src/third_party/hunspell_dictionaries': |
Chris Nardi | eea5de8 | 2017-10-14 22:21:31 | [diff] [blame] | 406 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 407 | |
| 408 | 'src/third_party/icu': |
Jungshik Shin | 27be5b2 | 2017-12-14 21:38:31 | [diff] [blame] | 409 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '94d819fa3e7e71f3dd8210d428c213ddb6e2b336', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 410 | |
| 411 | 'src/third_party/jsoncpp/source': |
| 412 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
| 413 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 414 | 'src/third_party/jsr-305/src': { |
| 415 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 416 | 'condition': 'checkout_android', |
| 417 | }, |
| 418 | |
| 419 | 'src/third_party/junit/src': { |
| 420 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 421 | 'condition': 'checkout_android', |
| 422 | }, |
| 423 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 424 | 'src/third_party/leakcanary/src': { |
| 425 | 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e', |
| 426 | 'condition': 'checkout_android', |
| 427 | }, |
| 428 | |
| 429 | 'src/third_party/leveldatabase/src': |
Victor Costan | 7f1a6b1 | 2017-10-09 19:00:34 | [diff] [blame] | 430 | Var('chromium_git') + '/external/leveldb.git' + '@' + 'ca216e493f32278f50a823811ab95f64cf0f839b', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 431 | |
| 432 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 433 | 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] | 434 | |
| 435 | 'src/third_party/libaddressinput/src': |
sebsg | 603b79c | 2017-11-24 00:29:08 | [diff] [blame] | 436 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'a575c63de328d0c72237c55d1a05e191c245122a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 437 | |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 438 | 'src/third_party/libaom/source/libaom': { |
Tom Finegan | 525e4537 | 2017-12-22 21:32:24 | [diff] [blame] | 439 | 'url': Var('aomedia_git') + '/aom.git' + '@' + 'cc92258a08d98f469dff1be288acbc322632377b', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 440 | 'condition': 'checkout_libaom', |
| 441 | }, |
| 442 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 443 | # Userspace interface to kernel DRM services. |
| 444 | 'src/third_party/libdrm/src': { |
Kristian H. Kristensen | 03ecc6d | 2017-10-30 23:53:36 | [diff] [blame] | 445 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 446 | 'condition': 'checkout_linux', |
| 447 | }, |
| 448 | |
| 449 | # The libevdev library (Chrome OS version). |
| 450 | 'src/third_party/libevdev/src': { |
| 451 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 452 | 'condition': 'checkout_linux', |
| 453 | }, |
| 454 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 455 | 'src/third_party/libjpeg_turbo': |
| 456 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd', |
| 457 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 458 | 'src/third_party/liblouis/src': { |
| 459 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2', |
| 460 | 'condition': 'checkout_linux', |
| 461 | }, |
| 462 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 463 | 'src/third_party/libphonenumber/dist': |
| 464 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 465 | |
| 466 | 'src/third_party/libprotobuf-mutator/src': |
| 467 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 468 | |
| 469 | 'src/third_party/libsrtp': |
| 470 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '1d45b8e599dc2db6ea3ae22dbc94a8c504652423', |
| 471 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 472 | # Android Explicit Synchronization. |
| 473 | 'src/third_party/libsync/src': { |
| 474 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'aa6cda6f638bd57d3a024f0d201f723a5c3bb875', |
| 475 | 'condition': 'checkout_linux', |
| 476 | }, |
| 477 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 478 | 'src/third_party/libvpx/source/libvpx': |
Marco | 69ce64a | 2018-01-08 18:03:15 | [diff] [blame] | 479 | Var('chromium_git') + '/webm/libvpx.git' + '@' + 'bed28a55f593efd3a71a3a9d05cf8bb25d15fa44', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 480 | |
| 481 | 'src/third_party/libwebm/source': |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 482 | Var('chromium_git') + '/webm/libwebm.git' + '@' + 'b03c65468b06d097f27235d93d76bfc45f490ede', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 483 | |
| 484 | 'src/third_party/libyuv': |
Miguel Casas | fcc38df | 2018-01-08 19:11:47 | [diff] [blame] | 485 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '50f9e618fa4bcb0561622fd709bee5da922b0fd4', # from r1688 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 486 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 487 | 'src/third_party/lighttpd': { |
| 488 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 489 | 'condition': 'checkout_mac or checkout_win', |
| 490 | }, |
| 491 | |
| 492 | 'src/third_party/lss': { |
| 493 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 494 | 'condition': 'checkout_android or checkout_linux', |
| 495 | }, |
| 496 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 497 | 'src/third_party/material_design_icons/src': { |
| 498 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 499 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 500 | 'condition': 'checkout_ios', |
| 501 | }, |
| 502 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 503 | 'src/third_party/mesa/src': |
| 504 | Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7035ca882cc77f85793fef', |
| 505 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 506 | # GNU binutils assembler for x86-64. |
| 507 | 'src/third_party/mingw-w64/mingw/bin': { |
| 508 | '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] | 509 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 510 | }, |
| 511 | |
| 512 | # Graphics buffer allocator for Chrome OS. |
| 513 | 'src/third_party/minigbm/src': { |
| 514 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '27a7e6a24709564e18c3382d0aeda0b40c7ae03b', |
| 515 | 'condition': 'checkout_linux', |
| 516 | }, |
| 517 | |
| 518 | # Minizip library. Used on Chrome OS. |
| 519 | 'src/third_party/minizip/src': { |
Tatsuhisa Yamaguchi | 0c5fc82a | 2017-12-27 01:52:10 | [diff] [blame] | 520 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 521 | 'condition': 'checkout_linux', |
| 522 | }, |
| 523 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 524 | 'src/third_party/mockito/src': { |
| 525 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850', |
| 526 | 'condition': 'checkout_android', |
| 527 | }, |
| 528 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 529 | # Binaries for nacl sdk. |
| 530 | 'src/third_party/nacl_sdk_binaries': { |
| 531 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 532 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 533 | }, |
| 534 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 535 | 'src/third_party/netty-tcnative/src': { |
| 536 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 537 | 'condition': 'checkout_android', |
| 538 | }, |
| 539 | |
| 540 | 'src/third_party/netty4/src': { |
| 541 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 542 | 'condition': 'checkout_android', |
| 543 | }, |
| 544 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 545 | 'src/third_party/openh264/src': |
| 546 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'a180c9d4d6f1a4830ca9eed9d159d54996bd63cb', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 547 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 548 | 'src/third_party/openmax_dl': |
| 549 | Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'), |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 550 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 551 | 'src/third_party/pdfium': |
| 552 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 553 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 554 | # Parses Windows PE/COFF executable format. |
| 555 | 'src/third_party/pefile': { |
| 556 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 557 | 'condition': 'checkout_win', |
| 558 | }, |
| 559 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame^] | 560 | 'src/third_party/perfetto': |
| 561 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '08591711c32b94eb7e00e897d64124bbcfa48556', |
| 562 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 563 | 'src/third_party/perl': { |
| 564 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78', |
| 565 | 'condition': 'checkout_win', |
| 566 | }, |
| 567 | |
| 568 | # Dependency of chromite.git and skia. |
| 569 | 'src/third_party/pyelftools': { |
| 570 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 571 | 'condition': 'checkout_linux', |
| 572 | }, |
| 573 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 574 | 'src/third_party/pyftpdlib/src': |
| 575 | Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45', |
| 576 | |
| 577 | 'src/third_party/pywebsocket/src': |
| 578 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 579 | |
| 580 | 'src/third_party/re2/src': |
Max Moroz | 13bd9f72 | 2017-12-05 18:12:11 | [diff] [blame] | 581 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5185d85264d23cfae4b38e2703703e9a4c8e974c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 582 | |
| 583 | 'src/third_party/requests/src': { |
| 584 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 585 | 'condition': 'checkout_android', |
| 586 | }, |
| 587 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 588 | 'src/third_party/robolectric/robolectric': { |
John Budorick | e7f2d133 | 2017-11-30 23:35:22 | [diff] [blame] | 589 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 590 | 'condition': 'checkout_android', |
| 591 | }, |
| 592 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 593 | 'src/third_party/sfntly/src': |
| 594 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
| 595 | |
| 596 | 'src/third_party/shaderc/src': |
| 597 | Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4', |
| 598 | |
| 599 | 'src/third_party/skia': |
| 600 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 601 | |
| 602 | 'src/third_party/smhasher/src': |
| 603 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 604 | |
| 605 | 'src/third_party/snappy/src': |
| 606 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'b02bfa754ebf27921d8da3bd2517eab445b84ff9', |
| 607 | |
| 608 | 'src/third_party/swiftshader': |
| 609 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 610 | |
| 611 | 'src/third_party/ub-uiautomator/lib': { |
| 612 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 613 | 'condition': 'checkout_android', |
| 614 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 615 | |
| 616 | 'src/third_party/usrsctp/usrsctplib': |
Sergey Ulanov | 8cabcdc | 2017-12-08 21:56:53 | [diff] [blame] | 617 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '0e076261b832121cf120ddc04aaff87ac3a34d30', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 618 | |
| 619 | 'src/third_party/visualmetrics/src': |
| 620 | Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6', |
| 621 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 622 | # Display server protocol for Linux. |
| 623 | 'src/third_party/wayland/src': { |
| 624 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 625 | 'condition': 'checkout_linux', |
| 626 | }, |
| 627 | |
| 628 | # Wayland protocols that add functionality not available in the core protocol. |
| 629 | 'src/third_party/wayland-protocols/src': { |
| 630 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '26c99346ab5f2273fe5581bc4f6397bbb834f747', |
| 631 | 'condition': 'checkout_linux', |
| 632 | }, |
| 633 | |
| 634 | # Wireless Display Software. Used on Chrome OS. |
| 635 | 'src/third_party/wds/src': { |
| 636 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 637 | 'condition': 'checkout_linux', |
| 638 | }, |
| 639 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 640 | 'src/third_party/webdriver/pylib': |
| 641 | Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd', |
| 642 | |
| 643 | 'src/third_party/webgl/src': |
Kenneth Russell | 258c3d0d | 2017-12-19 06:33:05 | [diff] [blame] | 644 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'd458ada06171a85af00367251a4ed55db7fe2018', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 645 | |
| 646 | 'src/third_party/webrtc': |
[email protected] | c630d3a | 2018-01-08 20:28:57 | [diff] [blame] | 647 | Var('webrtc_git') + '/src.git' + '@' + 'a9329dbae21cabd4b860e729ecd7769f5bec9ac7', # commit position 20628 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 648 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 649 | 'src/third_party/xdg-utils': { |
| 650 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 651 | 'condition': 'checkout_linux', |
| 652 | }, |
| 653 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 654 | 'src/third_party/yasm/source/patched-yasm': |
| 655 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc', |
| 656 | |
| 657 | 'src/tools/gyp': |
| 658 | Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb', |
| 659 | |
| 660 | 'src/tools/page_cycler/acid3': |
| 661 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 662 | |
| 663 | 'src/tools/swarming_client': |
| 664 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 665 | |
| 666 | 'src/v8': |
| 667 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 668 | |
| 669 | 'src-internal': { |
[email protected] | 309c9cc | 2018-01-05 18:20:21 | [diff] [blame] | 670 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@28396a3fae19369deefb60fd6dee84580d49a6d0', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 671 | 'condition': 'checkout_src_internal', |
| 672 | }, |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 673 | } |
| 674 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 675 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 676 | include_rules = [ |
| 677 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 678 | # 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] | 679 | '+base', |
| 680 | '+build', |
| 681 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 682 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 683 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 684 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 685 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 686 | '+testing', |
| 687 | '+third_party/icu/source/common/unicode', |
| 688 | '+third_party/icu/source/i18n/unicode', |
| 689 | '+url', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 690 | ] |
| 691 | |
| 692 | |
| 693 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 694 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 695 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 696 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 697 | 'skia', |
| 698 | 'testing', |
Mark Mentovai | ebb9ddd6 | 2017-09-25 17:24:41 | [diff] [blame] | 699 | 'third_party/breakpad/breakpad', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 700 | 'v8', |
| 701 | 'win8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 702 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 703 | |
| 704 | |
| 705 | hooks = [ |
| 706 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 707 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 708 | # first hook so that other things that get/generate into the output |
| 709 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 710 | 'name': 'landmines', |
| 711 | 'pattern': '.', |
| 712 | 'action': [ |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 713 | 'vpython', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 714 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 715 | ], |
| 716 | }, |
| 717 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 718 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 719 | # disabled. |
| 720 | 'name': 'disable_depot_tools_selfupdate', |
| 721 | 'pattern': '.', |
| 722 | 'action': [ |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 723 | 'vpython', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 724 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 725 | '--disable', |
| 726 | ], |
| 727 | }, |
| 728 | { |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 729 | # Ensure that while generating dependencies lists in .gyp files we don't |
| 730 | # accidentally reference any .pyc files whose corresponding .py files have |
| 731 | # already been deleted. |
| 732 | # We should actually try to avoid generating .pyc files, crbug.com/500078. |
| 733 | 'name': 'remove_stale_pyc_files', |
| 734 | 'pattern': '.', |
| 735 | 'action': [ |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 736 | 'vpython', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 737 | 'src/tools/remove_stale_pyc_files.py', |
| 738 | 'src/android_webview/tools', |
| 739 | 'src/build/android', |
| 740 | 'src/gpu/gles2_conform_support', |
| 741 | 'src/infra', |
| 742 | 'src/ppapi', |
| 743 | 'src/printing', |
| 744 | 'src/third_party/catapult', |
| 745 | 'src/third_party/closure_compiler/build', |
qyearsley | dfda207b | 2016-07-08 14:16:12 | [diff] [blame] | 746 | 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 747 | 'src/tools', |
| 748 | ], |
| 749 | }, |
| 750 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 751 | # This downloads binaries for Native Client's newlib toolchain. |
| 752 | # Done in lieu of building the toolchain from scratch as it can take |
| 753 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 754 | 'name': 'nacltools', |
| 755 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 756 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 757 | 'action': [ |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 758 | 'vpython', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 759 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 760 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 761 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 762 | ], |
| 763 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 764 | { |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 765 | # Downloads the current stable linux sysroot to build/linux/ if needed. |
[email protected] | 01a9860 | 2013-06-12 20:33:54 | [diff] [blame] | 766 | # This sysroot updates at about the same rate that the chrome build deps |
| 767 | # change. This script is a no-op except for linux users who are doing |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 768 | # official chrome builds or cross compiling. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 769 | 'name': 'sysroot', |
| 770 | 'pattern': '.', |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 771 | 'condition': 'checkout_linux', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 772 | 'action': ['vpython', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 773 | '--running-as-hook'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 774 | }, |
| 775 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 776 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 777 | 'name': 'win_toolchain', |
| 778 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 779 | 'condition': 'checkout_win', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 780 | 'action': ['vpython', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 781 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 782 | { |
| 783 | # Update the Mac toolchain if necessary. |
| 784 | 'name': 'mac_toolchain', |
| 785 | 'pattern': '.', |
Rohit Rao | 92489af | 2017-10-12 21:45:48 | [diff] [blame] | 786 | 'condition': 'checkout_ios or checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 787 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 788 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 789 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 790 | # debugging when used with clang on Ubuntu Precise. |
| 791 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 792 | { |
| 793 | 'name': 'binutils', |
| 794 | 'pattern': 'src/third_party/binutils', |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 795 | 'condition': 'host_os == "linux"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 796 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 797 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 798 | 'src/third_party/binutils/download.py', |
| 799 | ], |
| 800 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 801 | { |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 802 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 803 | 'name': 'clang', |
| 804 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 805 | 'action': ['vpython', 'src/tools/clang/scripts/update.py'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 806 | }, |
| 807 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 808 | # Mac doesn't use lld so it's not included in the default clang bundle |
| 809 | # there. lld is however needed in win cross builds, so download it there. |
| 810 | # Should run after the clang hook. |
| 811 | 'name': 'lld/mac', |
| 812 | 'pattern': '.', |
| 813 | 'condition': 'host_os == "mac" and checkout_win', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 814 | 'action': ['vpython', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 815 | }, |
| 816 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 817 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 818 | 'name': 'lastchange', |
| 819 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 820 | 'action': ['vpython', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 821 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 822 | }, |
| 823 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 824 | # Update GPU lists version string (for gpu/config). |
| 825 | 'name': 'gpu_lists_version', |
| 826 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 827 | 'action': ['vpython', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 828 | '-m', 'GPU_LISTS_VERSION', |
| 829 | '--revision-id-only', |
| 830 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 831 | }, |
| 832 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 833 | # Update skia_commit_hash.h. |
| 834 | 'name': 'lastchange_skia', |
| 835 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 836 | 'action': ['vpython', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 837 | '-m', 'SKIA_COMMIT_HASH', |
| 838 | '-s', 'src/third_party/skia', |
| 839 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 840 | }, |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 841 | # Pull GN binaries. This needs to be before running GYP below. |
| 842 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 843 | 'name': 'gn_win', |
| 844 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 845 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 846 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 847 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 848 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 849 | '--no_auth', |
| 850 | '--bucket', 'chromium-gn', |
| 851 | '-s', 'src/buildtools/win/gn.exe.sha1', |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 852 | ], |
| 853 | }, |
| 854 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 855 | 'name': 'gn_mac', |
| 856 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 857 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 858 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 859 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 860 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 861 | '--no_auth', |
| 862 | '--bucket', 'chromium-gn', |
| 863 | '-s', 'src/buildtools/mac/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 864 | ], |
| 865 | }, |
| 866 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 867 | 'name': 'gn_linux64', |
| 868 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 869 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 870 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 871 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 872 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 873 | '--no_auth', |
| 874 | '--bucket', 'chromium-gn', |
| 875 | '-s', 'src/buildtools/linux64/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 876 | ], |
| 877 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 878 | # Pull clang-format binaries using checked-in hashes. |
| 879 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 880 | 'name': 'clang_format_win', |
| 881 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 882 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 883 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 884 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 885 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 886 | '--no_auth', |
| 887 | '--bucket', 'chromium-clang-format', |
| 888 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 889 | ], |
| 890 | }, |
| 891 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 892 | 'name': 'clang_format_mac', |
| 893 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 894 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 895 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 896 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 897 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 898 | '--no_auth', |
| 899 | '--bucket', 'chromium-clang-format', |
| 900 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 901 | ], |
| 902 | }, |
| 903 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 904 | 'name': 'clang_format_linux', |
| 905 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 906 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 907 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 908 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 909 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 910 | '--no_auth', |
| 911 | '--bucket', 'chromium-clang-format', |
| 912 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 913 | ], |
| 914 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 915 | # Pull rc binaries using checked-in hashes. |
| 916 | { |
| 917 | 'name': 'rc_win', |
| 918 | 'pattern': '.', |
| 919 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 920 | 'action': [ 'vpython', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 921 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 922 | '--no_resume', |
| 923 | '--no_auth', |
| 924 | '--bucket', 'chromium-browser-clang/rc', |
| 925 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 926 | ], |
| 927 | }, |
| 928 | { |
| 929 | 'name': 'rc_mac', |
| 930 | 'pattern': '.', |
| 931 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 932 | 'action': [ 'vpython', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 933 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 934 | '--no_resume', |
| 935 | '--no_auth', |
| 936 | '--bucket', 'chromium-browser-clang/rc', |
| 937 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 938 | ], |
| 939 | }, |
| 940 | { |
| 941 | 'name': 'rc_linux', |
| 942 | 'pattern': '.', |
| 943 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 944 | 'action': [ 'vpython', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 945 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 946 | '--no_resume', |
| 947 | '--no_auth', |
| 948 | '--bucket', 'chromium-browser-clang/rc', |
| 949 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 950 | ] |
| 951 | }, |
| 952 | { |
| 953 | 'name': 'content_shell_fonts', |
| 954 | 'pattern': '.', |
Dirk Pranke | c3df0e35 | 2017-12-16 16:29:34 | [diff] [blame] | 955 | 'condition': 'checkout_linux', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 956 | 'action': [ 'download_from_google_storage', |
| 957 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 958 | '--extract', |
| 959 | '--no_auth', |
| 960 | '--bucket', 'chromium-fonts', |
| 961 | '-s', 'src/third_party/content_shell_fonts/content_shell_test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 962 | ], |
| 963 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 964 | # Pull order files for the win/clang build. |
| 965 | { |
| 966 | 'name': 'orderfiles_win', |
| 967 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 968 | 'condition': 'checkout_win', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 969 | 'action': [ 'vpython', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 970 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 971 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 972 | '--no_auth', |
| 973 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 974 | '-d', 'src/chrome/build', |
| 975 | ], |
| 976 | }, |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 977 | # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 978 | { |
| 979 | 'name': 'luci-go_win', |
| 980 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 981 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 982 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 983 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 984 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 985 | '--no_auth', |
| 986 | '--bucket', 'chromium-luci', |
| 987 | '-d', 'src/tools/luci-go/win64', |
| 988 | ], |
| 989 | }, |
| 990 | { |
| 991 | 'name': 'luci-go_mac', |
| 992 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 993 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 994 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 995 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 996 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 997 | '--no_auth', |
| 998 | '--bucket', 'chromium-luci', |
| 999 | '-d', 'src/tools/luci-go/mac64', |
| 1000 | ], |
| 1001 | }, |
| 1002 | { |
| 1003 | 'name': 'luci-go_linux', |
| 1004 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1005 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1006 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1007 | 'src/third_party/depot_tools/download_from_google_storage.py', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1008 | '--no_resume', |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 1009 | '--no_auth', |
| 1010 | '--bucket', 'chromium-luci', |
| 1011 | '-d', 'src/tools/luci-go/linux64', |
| 1012 | ], |
| 1013 | }, |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 1014 | # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 1015 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1016 | 'name': 'syzygy-binaries', |
| 1017 | 'pattern': '.', |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 1018 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1019 | 'action': ['vpython', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1020 | 'src/build/get_syzygy_binaries.py', |
| 1021 | '--output-dir=src/third_party/syzygy/binaries', |
Sebastien Marchand | 75ac1cc | 2017-12-06 16:58:38 | [diff] [blame] | 1022 | '--revision=8164b24ebde9c5649c9a09e88a7fc0b0fcbd1bc5', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1023 | '--overwrite', |
sebmarchand | af7cc2f | 2016-10-04 18:22:25 | [diff] [blame] | 1024 | '--copy-dia-binaries', |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 1025 | ], |
| 1026 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 1027 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1028 | 'name': 'apache_win32', |
| 1029 | 'pattern': '\\.sha1', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1030 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1031 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1032 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1033 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 1034 | '--directory', |
| 1035 | '--recursive', |
| 1036 | '--no_auth', |
| 1037 | '--num_threads=16', |
| 1038 | '--bucket', 'chromium-apache-win32', |
| 1039 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 1040 | ], |
| 1041 | }, |
| 1042 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1043 | 'name': 'msan_chained_origins', |
| 1044 | 'pattern': '.', |
| 1045 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1046 | 'action': [ 'vpython', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1047 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1048 | "--no_resume", |
| 1049 | "--no_auth", |
| 1050 | "--bucket", "chromium-instrumented-libraries", |
| 1051 | "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1", |
| 1052 | ], |
| 1053 | }, |
| 1054 | { |
| 1055 | 'name': 'msan_no_origins', |
| 1056 | 'pattern': '.', |
| 1057 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1058 | 'action': [ 'vpython', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 1059 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1060 | "--no_resume", |
| 1061 | "--no_auth", |
| 1062 | "--bucket", "chromium-instrumented-libraries", |
| 1063 | "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1", |
| 1064 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 1065 | }, |
| 1066 | { |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1067 | "name": "wasm_fuzzer", |
| 1068 | "pattern": ".", |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1069 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1070 | 'src/third_party/depot_tools/download_from_google_storage.py', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1071 | "--no_resume", |
| 1072 | "--no_auth", |
| 1073 | "-u", |
| 1074 | "--bucket", "v8-wasm-fuzzer", |
ahaas | ec987e5d | 2017-05-17 11:25:36 | [diff] [blame] | 1075 | "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1", |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 1076 | ], |
| 1077 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1078 | |
| 1079 | # Pull down Node binaries for WebUI toolchain. |
| 1080 | { |
| 1081 | 'name': 'node_linux64', |
| 1082 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1083 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1084 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1085 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1086 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1087 | '--extract', |
| 1088 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1089 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1090 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 1091 | ], |
| 1092 | }, |
| 1093 | { |
| 1094 | 'name': 'node_mac', |
| 1095 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1096 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1097 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1098 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1099 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1100 | '--extract', |
| 1101 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1102 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1103 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 1104 | ], |
| 1105 | }, |
| 1106 | { |
| 1107 | 'name': 'node_win', |
| 1108 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 1109 | 'condition': 'host_os == "win"', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1110 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1111 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1112 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1113 | '--no_auth', |
dpapad | 40b00b45 | 2017-11-21 05:00:09 | [diff] [blame] | 1114 | '--bucket', 'chromium-nodejs/8.9.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1115 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 1116 | ], |
| 1117 | }, |
| 1118 | |
| 1119 | # Pull down NPM dependencies for WebUI toolchain. |
| 1120 | { |
| 1121 | 'name': 'webui_node_modules', |
| 1122 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1123 | 'action': [ 'vpython', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 1124 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 1125 | '--no_resume', |
| 1126 | '--extract', |
| 1127 | '--no_auth', |
| 1128 | '--bucket', 'chromium-nodejs', |
| 1129 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 1130 | ], |
| 1131 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1132 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1133 | # Download Telemetry's binary dependencies via conditionals |
| 1134 | { |
| 1135 | 'name': 'checkout_telemetry_binary_dependencies', |
| 1136 | 'condition': 'checkout_telemetry_dependencies', |
| 1137 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1138 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1139 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 1140 | ], |
| 1141 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 1142 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 1143 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 1144 | { |
| 1145 | 'name': 'checkout_telemetry_benchmark_deps', |
| 1146 | 'condition': 'checkout_telemetry_dependencies', |
| 1147 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1148 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 1149 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 1150 | '-f', |
| 1151 | ], |
| 1152 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1153 | |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1154 | # Download Telemetry's binary dependencies |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 1155 | # TODO(crbug.com/780967) - remove this once the bots are setting the |
| 1156 | # `checkout_telemetry_dependencies` condition. |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1157 | { |
| 1158 | 'name': 'fetch_telemetry_binary_dependencies', |
| 1159 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1160 | 'action': [ 'vpython', |
Dirk Pranke | 4c3098b | 2017-10-10 18:57:22 | [diff] [blame] | 1161 | 'src/tools/perf/conditionally_execute', |
| 1162 | '--gyp-condition', 'fetch_telemetry_dependencies=1', |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 1163 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 1164 | ], |
| 1165 | }, |
John Budorick | da2bfbb | 2017-05-30 22:17:59 | [diff] [blame] | 1166 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1167 | # This is used to ensure that all network operations are properly |
| 1168 | # annotated so we can document what they're for. |
| 1169 | { |
| 1170 | 'name': 'tools_traffic_annotation_linux', |
| 1171 | 'pattern': '.', |
| 1172 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1173 | 'action': [ 'vpython', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1174 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1175 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 1176 | '--no_auth', |
| 1177 | '--num_threads=4', |
| 1178 | '--bucket', 'chromium-tools-traffic_annotation', |
| 1179 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 1180 | ], |
| 1181 | }, |
| 1182 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 1183 | # This is used to ensure that all network operations are properly |
| 1184 | # annotated so we can document what they're for. |
| 1185 | { |
| 1186 | 'name': 'tools_traffic_annotation_windows', |
| 1187 | 'pattern': '.', |
| 1188 | 'condition': 'host_os == "windows" and checkout_traffic_annotation_tools', |
| 1189 | 'action': [ 'vpython', |
| 1190 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1191 | '--no_resume', |
| 1192 | '--no_auth', |
| 1193 | '--num_threads=4', |
| 1194 | '--bucket', 'chromium-tools-traffic_annotation', |
| 1195 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 1196 | ], |
| 1197 | }, |
| 1198 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1199 | # Pull down Zucchini test data. |
| 1200 | { |
| 1201 | 'name': 'zucchini_testdata', |
| 1202 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1203 | 'action': [ 'vpython', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1204 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1205 | '--no_resume', |
| 1206 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 1207 | '--num_threads=4', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 1208 | '--bucket', 'chromium-binary-patching', |
| 1209 | '-d', 'src/chrome/installer/zucchini/testdata', |
| 1210 | ], |
| 1211 | }, |
| 1212 | |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1213 | { |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 1214 | 'name': 'Android CIPD Ensure', |
| 1215 | 'pattern': '.', |
| 1216 | 'condition': 'checkout_android', |
| 1217 | 'action': ['src/build/cipd/cipd_wrapper.py', |
| 1218 | '--chromium-root', 'src', |
| 1219 | '--ensure-file', 'src/build/cipd/android/android.ensure', |
| 1220 | ], |
| 1221 | }, |
| 1222 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1223 | # This downloads SDK extras and puts them in the |
| 1224 | # third_party/android_tools/sdk/extras directory. |
| 1225 | 'name': 'sdkextras', |
| 1226 | 'pattern': '.', |
| 1227 | 'condition': 'checkout_android', |
| 1228 | # When adding a new sdk extras package to download, add the package |
| 1229 | # directory and zip file to .gitignore in third_party/android_tools. |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1230 | 'action': [ 'vpython', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 1231 | 'src/build/android/play_services/update.py', |
| 1232 | 'download' |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1233 | ], |
| 1234 | }, |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 1235 | # Download checkstyle for use in PRESUBMIT for Java changes. |
| 1236 | { |
| 1237 | 'name': 'checkstyle', |
| 1238 | 'pattern': '.', |
| 1239 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 1240 | 'condition': 'checkout_android or checkout_linux', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1241 | 'action': [ 'vpython', |
John Budorick | bbdcc49 | 2017-10-09 18:57:09 | [diff] [blame] | 1242 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1243 | '--no_resume', |
| 1244 | '--no_auth', |
| 1245 | '--bucket', 'chromium-android-tools/checkstyle', |
| 1246 | '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1' |
| 1247 | ], |
| 1248 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1249 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1250 | 'name': 'gvr_static_shim_android_arm', |
| 1251 | 'pattern': '\\.sha1', |
| 1252 | 'condition': 'checkout_android', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1253 | 'action': [ 'vpython', |
| 1254 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1255 | '--no_resume', |
| 1256 | '--no_auth', |
| 1257 | '--bucket', 'chromium-gvr-static-shim', |
| 1258 | '-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] | 1259 | ], |
| 1260 | }, |
| 1261 | { |
| 1262 | 'name': 'gvr_static_shim_android_arm64', |
| 1263 | 'pattern': '\\.sha1', |
| 1264 | 'condition': 'checkout_android', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1265 | 'action': [ 'vpython', |
| 1266 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1267 | '--no_resume', |
| 1268 | '--no_auth', |
| 1269 | '--bucket', 'chromium-gvr-static-shim', |
| 1270 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1', |
thakis | 973bb243 | 2017-05-24 15:27:14 | [diff] [blame] | 1271 | ], |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1272 | }, |
| 1273 | { |
| 1274 | 'name': 'vr_controller_test_api', |
| 1275 | 'pattern': '\\.sha1', |
| 1276 | 'condition': 'checkout_android', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1277 | 'action': [ 'vpython', |
| 1278 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1279 | '--no_resume', |
| 1280 | '--no_auth', |
| 1281 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 1282 | '-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] | 1283 | ], |
| 1284 | }, |
| 1285 | # Download VR test APKs only if the environment variable is set |
| 1286 | { |
| 1287 | 'name': 'vr_test_apks', |
| 1288 | 'pattern': '.', |
| 1289 | 'condition': 'checkout_android', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1290 | 'action': [ 'vpython', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 1291 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1292 | ], |
| 1293 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 1294 | # Download Oculus SDK if appropriate. |
| 1295 | { |
| 1296 | 'name': 'libovr', |
| 1297 | 'pattern': '.', |
| 1298 | 'condition': 'checkout_oculus_sdk', |
| 1299 | 'action': ['vpython', |
| 1300 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 1301 | '--bucket', 'chrome-oculus-sdk', |
| 1302 | '--recursive', |
| 1303 | '--num_threads=10', |
| 1304 | '--directory', |
| 1305 | 'src/third_party/libovr/src', |
| 1306 | ], |
| 1307 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1308 | { |
| 1309 | # Pull doclava binaries if building for Android. |
| 1310 | 'name': 'doclava', |
| 1311 | 'pattern': '.', |
| 1312 | 'condition': 'checkout_android', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1313 | 'action': [ 'vpython', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 1314 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1315 | ], |
| 1316 | }, |
| 1317 | |
| 1318 | { |
| 1319 | 'name': 'fuchsia_sdk', |
| 1320 | 'pattern': '.', |
| 1321 | 'condition': 'checkout_fuchsia', |
| 1322 | 'action': [ |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 1323 | 'vpython', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1324 | 'src/build/fuchsia/update_sdk.py', |
Wez | 61fdf78 | 2018-01-03 23:38:24 | [diff] [blame] | 1325 | '16f4a04b24e5affe5e3e4a43016f667894a54e63', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1326 | ], |
| 1327 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 1328 | |
| 1329 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 1330 | { |
| 1331 | 'name': 'vpython_common', |
| 1332 | 'pattern': '.', |
| 1333 | 'action': [ 'vpython', |
| 1334 | '-vpython-spec', 'src/.vpython', |
| 1335 | '-vpython-tool', 'install', |
| 1336 | ], |
| 1337 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 1338 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 1339 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 1340 | recursedeps = [ |
bungeman | 1835f98 | 2016-09-28 18:33:22 | [diff] [blame] | 1341 | # buildtools provides clang_format, libc++, and libc++abi |
| 1342 | 'src/buildtools', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 1343 | # android_tools manages the NDK. |
| 1344 | 'src/third_party/android_tools', |
| 1345 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1346 | ("src/third_party/angle", "DEPS.chromium"), |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 1347 | # src-internal has its own DEPS file to pull additional internal repos |
| 1348 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 1349 | ] |