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