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