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