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 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 29 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 30 | vars = { |
[email protected] | 44a2e45 | 2010-09-26 17:04:16 | [diff] [blame] | 31 | # Use this googlecode_url variable only if there is an internal mirror for it. |
| 32 | # If you do not know, use the full path while defining your new deps entry. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 33 | 'googlecode_url': 'http://%s.googlecode.com/svn', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 34 | 'chromium_git': 'https://chromium.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 35 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 36 | # the commit queue can handle CLs rolling sfntly |
| 37 | # and whatever else without interference from each other. |
| 38 | 'sfntly_revision': '130f832eddf98467e6578b548cb74ce17d04a26d', |
| 39 | # Three lines of non-changing comments so that |
| 40 | # the commit queue can handle CLs rolling Skia |
| 41 | # and whatever else without interference from each other. |
skia-deps-roller | aa648b7 | 2016-02-26 08:15:02 | [diff] [blame] | 42 | 'skia_revision': '82e26bf23923f20828c850d1a0e01d8bde69cfff', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 43 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 44 | # the commit queue can handle CLs rolling V8 |
| 45 | # and whatever else without interference from each other. |
hablich | 8c9ddbc7 | 2016-02-26 19:46:00 | [diff] [blame] | 46 | 'v8_revision': 'ad16e6c2cbd2c6b0f2e8ff944ac245561c682ac2', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 47 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 48 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 49 | # and whatever else without interference from each other. |
maruel | f611f79d | 2016-02-25 21:43:30 | [diff] [blame] | 50 | 'swarming_revision': 'a72f46e42dba1335e8001499b4621acad2d26728', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 51 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 52 | # the commit queue can handle CLs rolling ANGLE |
| 53 | # and whatever else without interference from each other. |
jmadill | 3347ca4 | 2016-02-25 19:47:09 | [diff] [blame] | 54 | 'angle_revision': '115056012f5a63c1068df0a1feade979ef260b8a', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 55 | # Three lines of non-changing comments so that |
| 56 | # the commit queue can handle CLs rolling build tools |
| 57 | # and whatever else without interference from each other. |
thakis | 91bef51 | 2016-02-26 00:45:09 | [diff] [blame] | 58 | 'buildtools_revision': '14288a03a92856fe1fc296d39e6a25c2d83cd6cf', |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 59 | # Three lines of non-changing comments so that |
| 60 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 61 | # and whatever else without interference from each other. |
thestig | 11d7af3 | 2016-02-26 22:48:02 | [diff] [blame] | 62 | 'pdfium_revision': '8ba5b59356d506d3b9e976e7422e69bbd5bec8d6', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 63 | # Three lines of non-changing comments so that |
| 64 | # the commit queue can handle CLs rolling openmax_dl |
| 65 | # and whatever else without interference from each other. |
dskiba | 49bbf24 | 2016-01-21 19:30:03 | [diff] [blame] | 66 | 'openmax_dl_revision': '6670e52d32351145a6b6c198dab3f6a536edf3db', |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 67 | # Three lines of non-changing comments so that |
| 68 | # the commit queue can handle CLs rolling BoringSSL |
| 69 | # and whatever else without interference from each other. |
davidben | df9e798 | 2016-02-19 01:18:19 | [diff] [blame] | 70 | 'boringssl_revision': '6d49157929abdefb155daf2751dc03fd9eb4240c', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 71 | # Three lines of non-changing comments so that |
| 72 | # the commit queue can handle CLs rolling nss |
| 73 | # and whatever else without interference from each other. |
thakis | be09dea | 2016-01-04 19:06:12 | [diff] [blame] | 74 | 'nss_revision': '225bfc39c93dfb7c7d0d1162f81e9bb5cd356c30', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 75 | # Three lines of non-changing comments so that |
| 76 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 77 | # and whatever else without interference from each other. |
Nico Weber | 715d86f2 | 2015-11-04 00:55:21 | [diff] [blame] | 78 | 'google_toolbox_for_mac_revision': '401878398253074c515c03cb3a3f8bb0cc8da6e9', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 79 | # Three lines of non-changing comments so that |
| 80 | # the commit queue can handle CLs rolling lighttpd |
| 81 | # and whatever else without interference from each other. |
| 82 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 83 | # Three lines of non-changing comments so that |
| 84 | # the commit queue can handle CLs rolling lss |
| 85 | # and whatever else without interference from each other. |
cullinan | 2e9d27ba | 2015-08-12 03:16:59 | [diff] [blame] | 86 | 'lss_revision': '4fc942258fe5509549333b9487ec018e3c8c5b10', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 87 | # Three lines of non-changing comments so that |
| 88 | # the commit queue can handle CLs rolling NaCl |
| 89 | # and whatever else without interference from each other. |
nacl-deps-roller | 47dc6a8 | 2016-02-27 03:39:56 | [diff] [blame] | 90 | 'nacl_revision': '7974b865ba0816c48cdc3035ff9ce9ecc024beb6', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 91 | # Three lines of non-changing comments so that |
| 92 | # the commit queue can handle CLs rolling dEQP |
| 93 | # and whatever else without interference from each other. |
jmadill | 4812ec88 | 2015-11-21 00:38:20 | [diff] [blame] | 94 | 'deqp_revision': 'cc0ded6c77267bbb14d21aac358fc5d9690c07f8', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 95 | 'deqp_url': 'https://android.googlesource.com/platform/external/deqp', |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 96 | # Three lines of non-changing comments so that |
| 97 | # the commit queue can handle CLs rolling freetype-android |
| 98 | # and whatever else without interference from each other. |
| 99 | 'freetype_android_revision': 'a512b0fe7a8d9db0e5aa9c0a4db1e92cb861722d', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 100 | } |
| 101 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 102 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 103 | # If you need to add a new host, contact chrome infrastracture team. |
| 104 | allowed_hosts = [ |
| 105 | 'chromium.googlesource.com', |
| 106 | 'boringssl.googlesource.com', |
| 107 | 'pdfium.googlesource.com', |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 108 | 'android.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 109 | ] |
| 110 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 111 | deps = { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 112 | 'src/breakpad/src': |
sdefresne | 51e8d360 | 2016-02-09 12:29:35 | [diff] [blame] | 113 | Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '7fef95a322beedaddcca627e1a88b54411f586da', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 114 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 115 | 'src/buildtools': |
| 116 | Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'), |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 117 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 118 | 'src/sdch/open-vcdiff': |
ellyjones | 5b9d093 | 2015-09-16 15:37:03 | [diff] [blame] | 119 | Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 120 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 121 | 'src/testing/gtest': |
tandrii | dd3139a | 2015-10-07 13:28:57 | [diff] [blame] | 122 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6f8a66431cb592dad629028a50b3dd418a408c87', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 123 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 124 | 'src/testing/gmock': |
pkasting | 6d73ed0 | 2015-07-31 20:04:37 | [diff] [blame] | 125 | Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e102c9c332ce19a33faf75be', # from svn revision 566 |
[email protected] | c6bc0bd | 2011-01-27 19:55:06 | [diff] [blame] | 126 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 127 | 'src/third_party/angle': |
| 128 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
[email protected] | 7cc7a2e7 | 2013-11-20 03:23:19 | [diff] [blame] | 129 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 130 | 'src/third_party/colorama/src': |
| 131 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
[email protected] | 2e37020f | 2014-06-10 22:14:18 | [diff] [blame] | 132 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 133 | 'src/third_party/icu': |
slan | 80ce3c8 | 2016-02-21 21:51:52 | [diff] [blame] | 134 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'e466f6ac8f60bb9697af4a91c6911c6fc4aec95f', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 135 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 136 | 'src/third_party/libexif/sources': |
thestig | ef44633 | 2016-02-23 21:49:31 | [diff] [blame] | 137 | Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + '9d467f7d21e4749ee22ee7520e561ac7b38484b9', |
[email protected] | 47d1a47a5 | 2012-06-18 20:39:36 | [diff] [blame] | 138 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 139 | 'src/third_party/hunspell_dictionaries': |
rouslan | bcf16bb | 2015-07-01 18:05:54 | [diff] [blame] | 140 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'c106afdcec5d3de2622e19f1b3294c47bbd8bd72', |
[email protected] | 5c965dd | 2009-09-04 21:11:43 | [diff] [blame] | 141 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 142 | 'src/third_party/safe_browsing/testing': |
| 143 | Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
[email protected] | 1ebf896 | 2010-09-28 17:51:57 | [diff] [blame] | 144 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 145 | 'src/third_party/leveldatabase/src': |
cmumford | ed0245e6 | 2015-12-10 20:39:26 | [diff] [blame] | 146 | Var('chromium_git') + '/external/leveldb.git' + '@' + '706b7f8d43b0aecdc75c5ee49d3e4ef5f27b9faf', |
[email protected] | 9ce15e92 | 2011-03-22 22:24:42 | [diff] [blame] | 147 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 148 | 'src/third_party/snappy/src': |
| 149 | Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958c7c0933d22e80c20bf', |
[email protected] | 9ce15e92 | 2011-03-22 22:24:42 | [diff] [blame] | 150 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 151 | 'src/tools/gyp': |
justincohen | dfe5b29 | 2016-02-16 23:50:02 | [diff] [blame] | 152 | Var('chromium_git') + '/external/gyp.git' + '@' + 'ed163ce233f76a950dce1751ac851dbe4b1c00cc', |
[email protected] | acb9f72 | 2010-03-25 17:14:59 | [diff] [blame] | 153 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 154 | 'src/tools/swarming_client': |
| 155 | Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_revision'), |
[email protected] | 5dcce7f8 | 2012-10-04 00:08:07 | [diff] [blame] | 156 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 157 | 'src/v8': |
machenbach | a0a3e4a | 2014-09-24 12:43:11 | [diff] [blame] | 158 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 159 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 160 | 'src/native_client': |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 161 | Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
[email protected] | 6f0a2dd | 2011-12-05 21:59:01 | [diff] [blame] | 162 | |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 163 | 'src/third_party/sfntly/src': |
| 164 | Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'), |
[email protected] | f536426 | 2011-07-22 17:57:59 | [diff] [blame] | 165 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 166 | 'src/third_party/skia': |
| 167 | Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
[email protected] | d5282e7 | 2009-05-13 13:16:52 | [diff] [blame] | 168 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 169 | 'src/tools/page_cycler/acid3': |
| 170 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
[email protected] | 0735266 | 2009-07-13 23:22:33 | [diff] [blame] | 171 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 172 | 'src/chrome/test/data/perf/canvas_bench': |
| 173 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 174 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 175 | 'src/chrome/test/data/perf/frame_rate/content': |
| 176 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 177 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 178 | 'src/third_party/bidichecker': |
| 179 | Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0', |
[email protected] | 2a18cabc | 2011-04-12 10:36:04 | [diff] [blame] | 180 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 181 | 'src/third_party/webgl/src': |
zmo | 6252d942 | 2016-02-25 21:27:49 | [diff] [blame] | 182 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1012e1f8baea808f3bc9fcef945d66b5f740c32b', |
[email protected] | 1f7077f | 2011-07-12 12:58:05 | [diff] [blame] | 183 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 184 | 'src/third_party/webdriver/pylib': |
| 185 | Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd', |
[email protected] | d9b19e3 | 2011-01-29 02:09:08 | [diff] [blame] | 186 | |
johannkoenig | 5238138 | 2015-09-18 22:35:25 | [diff] [blame] | 187 | 'src/third_party/libvpx_new/source/libvpx': |
marpan | f6bbfe11 | 2016-02-18 21:46:46 | [diff] [blame] | 188 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '89cc68252846478fa7f2d570d96ff93776cefac6', |
johannkoenig | 5238138 | 2015-09-18 22:35:25 | [diff] [blame] | 189 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 190 | 'src/third_party/ffmpeg': |
brucedawson | 3d3507b | 2016-02-25 02:10:35 | [diff] [blame] | 191 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'b828a1bc02572754455e97508e4b78fc06d5e6fa', |
[email protected] | e55badb | 2010-05-07 23:55:35 | [diff] [blame] | 192 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 193 | 'src/third_party/libjingle/source/talk': |
pbos | a43c1cd4 | 2016-02-25 15:36:49 | [diff] [blame] | 194 | Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + 'a4cc90bc9bfb5cc932075aebccb734e38932b107', # commit position 11754 |
[email protected] | 68187f0 | 2010-08-17 16:50:07 | [diff] [blame] | 195 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 196 | 'src/third_party/usrsctp/usrsctplib': |
perkj | a46025c | 2015-12-14 11:03:38 | [diff] [blame] | 197 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'c60ec8b35c3fe6027d7a3faae89d1c8d7dd3ce98', |
[email protected] | e033cd3f | 2013-05-08 15:21:22 | [diff] [blame] | 198 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 199 | 'src/third_party/libsrtp': |
davidben | 8f25a1a | 2016-02-10 23:40:25 | [diff] [blame] | 200 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '8eecac0feef4c65e2debb42718a10eab91551f35', # from svn revision 295151 |
[email protected] | 44f3e79 | 2012-01-28 03:18:55 | [diff] [blame] | 201 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 202 | 'src/third_party/yasm/source/patched-yasm': |
maruel | 77e1d01e | 2016-02-08 21:17:43 | [diff] [blame] | 203 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6c7c6a1387217352ce02b31754deb54d2a', |
[email protected] | 76ce152 | 2010-12-13 12:02:42 | [diff] [blame] | 204 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 205 | 'src/third_party/libjpeg_turbo': |
Hans Wennborg | 60343d3 | 2015-09-16 21:38:04 | [diff] [blame] | 206 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29745f1546b6ebf5cf532e841c04c2c', |
[email protected] | cc1b1465 | 2011-01-17 12:35:57 | [diff] [blame] | 207 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 208 | 'src/third_party/flac': |
brettw | 2426306 | 2015-09-01 01:19:49 | [diff] [blame] | 209 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '2c4b86af352b23498315c016dc207e3fb2733fc0', |
[email protected] | f94eda9 | 2011-02-25 00:34:00 | [diff] [blame] | 210 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 211 | 'src/third_party/pyftpdlib/src': |
| 212 | Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45', |
[email protected] | 4e7b5f9 | 2011-07-22 20:58:29 | [diff] [blame] | 213 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 214 | 'src/third_party/scons-2.0.1': |
| 215 | Var('chromium_git') + '/native_client/src/third_party/scons-2.0.1.git' + '@' + '1c1550e17fc26355d08627fbdec13d8291227067', |
[email protected] | 185a691 | 2011-06-17 19:34:07 | [diff] [blame] | 216 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 217 | 'src/third_party/webrtc': |
pbos | a43c1cd4 | 2016-02-25 15:36:49 | [diff] [blame] | 218 | Var('chromium_git') + '/external/webrtc/trunk/webrtc.git' + '@' + 'bcf5bfae4efec89e9c8f309f1c8f479e67c404c0', # commit position 11765 |
[email protected] | 21c24fa7 | 2011-09-05 13:35:02 | [diff] [blame] | 219 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 220 | 'src/third_party/openmax_dl': |
| 221 | Var('chromium_git') + '/external/webrtc/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'), |
[email protected] | 0bed32c | 2013-03-30 17:38:54 | [diff] [blame] | 222 | |
sbc | 5695577 | 2015-04-07 17:06:08 | [diff] [blame] | 223 | 'src/third_party/jsoncpp/source': |
sbc | 12f9e9d6 | 2015-04-09 18:20:09 | [diff] [blame] | 224 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248 |
[email protected] | 3bd20ee4 | 2011-10-22 00:33:19 | [diff] [blame] | 225 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 226 | 'src/third_party/libyuv': |
fbarchard | a8c31941 | 2016-02-16 20:35:52 | [diff] [blame] | 227 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '20343f45c612e485cd898aeaae2250df2d0b2d2d', # from version 1576 |
[email protected] | 1e29b4e | 2011-11-03 01:25:19 | [diff] [blame] | 228 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 229 | 'src/third_party/smhasher/src': |
| 230 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
[email protected] | f0736ff | 2011-12-03 04:19:20 | [diff] [blame] | 231 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 232 | 'src/third_party/libaddressinput/src': |
rouslan | 12f29f30 | 2015-06-13 00:21:16 | [diff] [blame] | 233 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '5eeeb797e79fa01503fcdcbebdc50036fac023ef', |
[email protected] | 6cf5dbdd | 2013-11-09 04:21:45 | [diff] [blame] | 234 | |
thakis | 64ec208 | 2016-02-11 02:45:50 | [diff] [blame] | 235 | # These are all at libphonenumber r728. |
| 236 | 'src/third_party/libphonenumber/src/phonenumbers': |
| 237 | Var('chromium_git') + '/external/libphonenumber/cpp/src/phonenumbers.git' + '@' + '0d6e3e50e17c94262ad1ca3b7d52b11223084bca', |
| 238 | 'src/third_party/libphonenumber/src/test': |
| 239 | Var('chromium_git') + '/external/libphonenumber/cpp/test.git' + '@' + 'f351a7e007f9c9995494499120bbc361ca808a16', |
| 240 | 'src/third_party/libphonenumber/src/resources': |
| 241 | Var('chromium_git') + '/external/libphonenumber/resources.git' + '@' + 'b6dfdc7952571ff7ee72643cd88c988cbe966396', |
[email protected] | d12c2050 | 2012-02-01 11:40:19 | [diff] [blame] | 242 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 243 | 'src/third_party/webpagereplay': |
nednguyen | 64d3946 | 2015-07-31 18:37:26 | [diff] [blame] | 244 | Var('chromium_git') + '/external/github.com/chromium/web-page-replay.git' + '@' + '7564939bdf6482d57b9bd5e9c931679f96d8cf75', |
[email protected] | 51e3e3d | 2012-08-21 02:27:44 | [diff] [blame] | 245 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 246 | 'src/third_party/pywebsocket/src': |
hiroshige | 76efe993 | 2015-12-17 08:46:49 | [diff] [blame] | 247 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
[email protected] | 9a97803 | 2012-10-19 03:43:14 | [diff] [blame] | 248 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 249 | 'src/third_party/opus/src': |
flim | c6076f2 | 2016-02-02 17:39:53 | [diff] [blame] | 250 | Var('chromium_git') + '/chromium/deps/opus.git' + '@' + '655cc54c564b84ef2827f0b2152ce3811046201e', |
[email protected] | a220d97 | 2012-12-12 23:26:56 | [diff] [blame] | 251 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 252 | 'src/media/cdm/api': |
Avi Drissman | 97785ea | 2015-12-19 01:11:31 | [diff] [blame] | 253 | Var('chromium_git') + '/chromium/cdm.git' + '@' + '1dea7088184dec2ebe4a8b3800aabb0afbb4b88a', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 254 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 255 | 'src/third_party/mesa/src': |
reveman | d90cc42 | 2015-11-20 20:13:06 | [diff] [blame] | 256 | Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7035ca882cc77f85793fef', |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 257 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 258 | 'src/third_party/cld_2/src': |
andrewhayden | fe9263ad | 2015-08-11 13:00:44 | [diff] [blame] | 259 | Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84b58a5d7690ebf05a91406f371ce00c3daf31c0', |
[email protected] | edf1f06 | 2014-01-07 11:11:53 | [diff] [blame] | 260 | |
mcasas | 09903b3 | 2015-07-14 16:20:47 | [diff] [blame] | 261 | 'src/third_party/libwebm/source': |
| 262 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '75a6d2da8b63e0c446ec0ce1ac942c2962d959d7', |
| 263 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 264 | 'src/third_party/pdfium': |
| 265 | 'https://pdfium.googlesource.com/pdfium.git' + '@' + Var('pdfium_revision'), |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 266 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 267 | 'src/third_party/boringssl/src': |
| 268 | 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('boringssl_revision'), |
dtu | 3429796 | 2014-10-01 23:43:01 | [diff] [blame] | 269 | |
| 270 | 'src/third_party/py_trace_event/src': |
| 271 | Var('chromium_git') + '/external/py_trace_event.git' + '@' + 'dd463ea9e2c430de2b9e53dea57a77b4c3ac9b30', |
nyquist | bbd665a | 2015-03-20 16:20:17 | [diff] [blame] | 272 | |
| 273 | 'src/third_party/dom_distiller_js/dist': |
wychen | cd32776f | 2015-12-29 01:06:01 | [diff] [blame] | 274 | Var('chromium_git') + '/external/github.com/chromium/dom-distiller-dist.git' + '@' + 'e21fe06cb71327ec62431f823e783d7b02f97b26', |
sullivan | 0cf8767 | 2015-08-04 17:10:32 | [diff] [blame] | 275 | |
| 276 | 'src/third_party/catapult': |
| 277 | Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' + '@' + |
catapult-deps-roller | fa369d7c | 2016-02-27 07:33:39 | [diff] [blame] | 278 | '861b2624ee4f751437add6fd6cba4a75497b3dff', |
hbos | dc28e3ff | 2015-11-13 14:43:51 | [diff] [blame] | 279 | |
| 280 | 'src/third_party/openh264/src': |
| 281 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'b37cda248234162033e3e11b0335f3131cdfe488', |
battre | 0739c64 | 2015-12-21 17:45:27 | [diff] [blame] | 282 | |
| 283 | 'src/third_party/re2/src': |
| 284 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'dba3349aba83b5588e85e5ecf2b56c97f2d259b7', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 285 | } |
| 286 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 287 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 288 | deps_os = { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 289 | 'win': { |
| 290 | 'src/chrome/tools/test/reference_build/chrome_win': |
| 291 | Var('chromium_git') + '/chromium/reference_builds/chrome_win.git' + '@' + 'f8a3a845dfc845df6b14280f04f86a61959357ef', |
[email protected] | b7373e5 | 2009-12-15 21:09:38 | [diff] [blame] | 292 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 293 | 'src/third_party/cygwin': |
| 294 | Var('chromium_git') + '/chromium/deps/cygwin.git' + '@' + 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 295 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 296 | 'src/third_party/psyco_win32': |
| 297 | Var('chromium_git') + '/chromium/deps/psyco_win32.git' + '@' + 'f5af9f6910ee5a8075bbaeed0591469f1661d868', |
[email protected] | 7e6497f | 2011-03-30 18:52:23 | [diff] [blame] | 298 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 299 | 'src/third_party/bison': |
| 300 | Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
[email protected] | 6c7b7926 | 2012-07-18 23:50:45 | [diff] [blame] | 301 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 302 | 'src/third_party/gperf': |
| 303 | Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
[email protected] | 6c7b7926 | 2012-07-18 23:50:45 | [diff] [blame] | 304 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 305 | 'src/third_party/perl': |
| 306 | Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78', |
[email protected] | 6c7b7926 | 2012-07-18 23:50:45 | [diff] [blame] | 307 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 308 | 'src/third_party/lighttpd': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 309 | Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
[email protected] | 5b30d47 | 2009-12-03 22:02:38 | [diff] [blame] | 310 | |
[email protected] | 3577031 | 2009-10-28 01:21:48 | [diff] [blame] | 311 | # Parses Windows PE/COFF executable format. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 312 | 'src/third_party/pefile': |
| 313 | Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
[email protected] | 4b167a3 | 2010-01-25 17:54:08 | [diff] [blame] | 314 | |
| 315 | # NSS, for SSLClientSocketNSS. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 316 | 'src/third_party/nss': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 317 | Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
[email protected] | 9f341ec | 2010-01-27 20:59:35 | [diff] [blame] | 318 | |
[email protected] | b13b6a3e | 2012-04-13 23:01:38 | [diff] [blame] | 319 | # GNU binutils assembler for x86-32. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 320 | 'src/third_party/gnu_binutils': |
| 321 | Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
[email protected] | b13b6a3e | 2012-04-13 23:01:38 | [diff] [blame] | 322 | # GNU binutils assembler for x86-64. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 323 | 'src/third_party/mingw-w64/mingw/bin': |
| 324 | Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
[email protected] | 1c26217 | 2010-06-10 15:25:46 | [diff] [blame] | 325 | |
[email protected] | 76ce152 | 2010-12-13 12:02:42 | [diff] [blame] | 326 | # Dependencies used by libjpeg-turbo |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 327 | 'src/third_party/yasm/binaries': |
| 328 | Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b0aa06da24ef8b123058bb61ee468881', |
[email protected] | 51ce0e17 | 2011-08-05 16:16:23 | [diff] [blame] | 329 | |
[email protected] | bbc90fef | 2011-11-28 19:08:27 | [diff] [blame] | 330 | # Binaries for nacl sdk. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 331 | 'src/third_party/nacl_sdk_binaries': |
| 332 | Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
jmadill | 7890881 | 2015-06-29 19:58:34 | [diff] [blame] | 333 | |
| 334 | # ANGLE uses dEQP for GPU testing |
| 335 | 'src/third_party/deqp/src': |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 336 | Var('deqp_url') + '@' + Var('deqp_revision'), |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 337 | }, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 338 | 'ios': { |
baxley | 1308ce8 | 2016-02-22 16:44:00 | [diff] [blame] | 339 | 'src/ios/third_party/fishhook/src': |
| 340 | Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
stuartmorgan | 94d1d75 | 2015-03-04 19:58:09 | [diff] [blame] | 341 | 'src/ios/third_party/gcdwebserver/src': |
shreyasv | 2f5179b | 2015-05-21 22:11:29 | [diff] [blame] | 342 | Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', |
stuartmorgan | 94d1d75 | 2015-03-04 19:58:09 | [diff] [blame] | 343 | |
sdefresne | a9045f4 | 2016-02-23 15:22:45 | [diff] [blame] | 344 | 'src/ios/third_party/ochamcrest/src': |
| 345 | Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '5b50930c66d1e537918a87eef0943d6750729dc5', |
| 346 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 347 | 'src/third_party/google_toolbox_for_mac/src': |
Nico Weber | 715d86f2 | 2015-11-04 00:55:21 | [diff] [blame] | 348 | Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
[email protected] | 9e10dbc | 2012-07-10 15:39:59 | [diff] [blame] | 349 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 350 | 'src/third_party/nss': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 351 | Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
[email protected] | 6bb12cc7 | 2012-07-27 15:30:39 | [diff] [blame] | 352 | |
| 353 | # class-dump utility to generate header files for undocumented SDKs |
justincohen | b61668a | 2015-06-02 23:11:35 | [diff] [blame] | 354 | 'src/third_party/class-dump/src': |
justincohen | c2637cc | 2015-08-09 22:29:31 | [diff] [blame] | 355 | Var('chromium_git') + '/external/github.com/nygard/class-dump.git' + '@' + '978d177ca6f0d2e5e34acf3e8dadc63e3140ebbc', |
[email protected] | 50c432e | 2012-08-01 15:29:51 | [diff] [blame] | 356 | |
[email protected] | 5df8c7ca | 2013-05-31 07:57:24 | [diff] [blame] | 357 | # Code that's not needed due to not building everything |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 358 | 'src/chrome/test/data/perf/canvas_bench': None, |
| 359 | 'src/chrome/test/data/perf/frame_rate/content': None, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 360 | 'src/native_client': None, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 361 | 'src/third_party/ffmpeg': None, |
| 362 | 'src/third_party/hunspell_dictionaries': None, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 363 | 'src/third_party/webgl': None, |
[email protected] | a6b749d | 2012-07-02 17:11:21 | [diff] [blame] | 364 | }, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 365 | 'mac': { |
| 366 | 'src/chrome/tools/test/reference_build/chrome_mac': |
| 367 | Var('chromium_git') + '/chromium/reference_builds/chrome_mac.git' + '@' + '8dc181329e7c5255f83b4b85dc2f71498a237955', |
[email protected] | b7373e5 | 2009-12-15 21:09:38 | [diff] [blame] | 368 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 369 | 'src/third_party/google_toolbox_for_mac/src': |
Nico Weber | 715d86f2 | 2015-11-04 00:55:21 | [diff] [blame] | 370 | Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 371 | |
[email protected] | a023dca | 2013-12-18 03:58:36 | [diff] [blame] | 372 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 373 | 'src/third_party/pdfsqueeze': |
| 374 | Var('chromium_git') + '/external/pdfsqueeze.git' + '@' + '5936b871e6a087b7e50d4cbcb122378d8a07499f', |
[email protected] | a023dca | 2013-12-18 03:58:36 | [diff] [blame] | 375 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 376 | 'src/third_party/lighttpd': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 377 | Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
[email protected] | 5b30d47 | 2009-12-03 22:02:38 | [diff] [blame] | 378 | |
[email protected] | d4852bd | 2010-05-28 16:56:22 | [diff] [blame] | 379 | # NSS, for SSLClientSocketNSS. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 380 | 'src/third_party/nss': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 381 | Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), |
[email protected] | 82f869be | 2010-06-22 20:33:50 | [diff] [blame] | 382 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 383 | 'src/chrome/installer/mac/third_party/xz/xz': |
| 384 | Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 385 | }, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 386 | 'unix': { |
[email protected] | ef525cc | 2009-07-10 17:08:16 | [diff] [blame] | 387 | # Linux, really. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 388 | 'src/chrome/tools/test/reference_build/chrome_linux': |
| 389 | Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@' + '033d053a528e820e1de3e2db766678d862a86b36', |
[email protected] | b7373e5 | 2009-12-15 21:09:38 | [diff] [blame] | 390 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 391 | 'src/third_party/xdg-utils': |
| 392 | Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
[email protected] | e0d0014 | 2009-09-18 22:10:27 | [diff] [blame] | 393 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 394 | 'src/third_party/lss': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 395 | Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Var('lss_revision'), |
[email protected] | 8f205b0 | 2010-11-10 22:48:17 | [diff] [blame] | 396 | |
[email protected] | 28b9ab6d | 2012-10-13 20:53:15 | [diff] [blame] | 397 | # For Linux and Chromium OS. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 398 | 'src/third_party/cros_system_api': |
alemate | 546d2f6f | 2016-02-26 01:37:20 | [diff] [blame] | 399 | Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '7d0047203cf4263940e92d50b0725d0faf4d9281', |
[email protected] | 86b3789 | 2013-02-21 01:19:26 | [diff] [blame] | 400 | |
| 401 | # Note that this is different from Android's freetype repo. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 402 | 'src/third_party/freetype2/src': |
bungeman | 97253f9 | 2015-09-16 15:21:21 | [diff] [blame] | 403 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc1532a7c4c592f24a4c1a0261d2845524ca5cff', |
[email protected] | 474a244 | 2013-03-23 17:26:50 | [diff] [blame] | 404 | |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 405 | 'src/third_party/freetype-android/src': |
| 406 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_android_revision'), |
| 407 | |
[email protected] | 08465a2f | 2014-08-01 14:44:42 | [diff] [blame] | 408 | # Build tools for Chrome OS. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 409 | 'src/third_party/chromite': |
bruthig | 4d84812 | 2015-07-08 13:49:06 | [diff] [blame] | 410 | Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'e19f83ba227bf1ec0077f5d3a816a415f1dd88d0', |
[email protected] | 474a244 | 2013-03-23 17:26:50 | [diff] [blame] | 411 | |
| 412 | # Dependency of chromite.git. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 413 | 'src/third_party/pyelftools': |
dnj | e9ac6f3 | 2015-04-29 17:19:40 | [diff] [blame] | 414 | Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + 'bdc1d380acd88d4bfaf47265008091483b0d614e', |
[email protected] | 5fb98e3 | 2013-06-14 06:16:34 | [diff] [blame] | 415 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 416 | 'src/third_party/liblouis/src': |
plundblad | 88aa7765 | 2014-09-19 08:34:25 | [diff] [blame] | 417 | Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2', |
[email protected] | 2ea858d | 2013-11-09 00:59:33 | [diff] [blame] | 418 | |
[email protected] | d412cf4 | 2014-01-11 02:54:38 | [diff] [blame] | 419 | # Used for embedded builds. CrOS & Linux use the system version. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 420 | 'src/third_party/fontconfig/src': |
| 421 | Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b749f9823c51827a60aeb5c1', |
mdempsky | 6b5854d2 | 2014-12-02 00:26:33 | [diff] [blame] | 422 | |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 423 | # ANGLE uses dEQP for GPU testing |
| 424 | 'src/third_party/deqp/src': |
| 425 | Var('deqp_url') + '@' + Var('deqp_revision'), |
spang | c231bff | 2015-09-14 23:16:57 | [diff] [blame] | 426 | |
| 427 | # Graphics buffer allocator for Chrome OS. |
| 428 | 'src/third_party/minigbm/src': |
reveman | 5fe9d6e | 2016-02-27 23:33:04 | [diff] [blame^] | 429 | Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '1e229399228ac107e8ae0f73a466e3ea17fe5839', |
reveman | 754ca2c | 2015-11-14 00:21:29 | [diff] [blame] | 430 | |
| 431 | # Display server protocol for Linux. |
| 432 | 'src/third_party/wayland/src': |
reveman | f16ea649 | 2016-01-26 02:12:46 | [diff] [blame] | 433 | Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', |
reveman | 6592ea1 | 2015-11-30 21:09:23 | [diff] [blame] | 434 | |
| 435 | # Wayland protocols that add functionality not available in the core protocol. |
| 436 | 'src/third_party/wayland-protocols/src': |
reveman | a65fd9f | 2016-02-18 06:20:16 | [diff] [blame] | 437 | Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '596dfda882a51c05699bcb28a8459ce936a138db', |
mikhail.pozdnyakov | 6d56dcc | 2016-02-12 11:10:49 | [diff] [blame] | 438 | |
| 439 | # Wireless Display Software. Used on Chrome OS. |
| 440 | 'src/third_party/wds/src': |
| 441 | Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'f187dda5fccaad08e168dc6657109325f42c648e', |
[email protected] | ef525cc | 2009-07-10 17:08:16 | [diff] [blame] | 442 | }, |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 443 | 'android': { |
nyquist | 38f28ba | 2014-09-04 00:28:38 | [diff] [blame] | 444 | 'src/third_party/android_protobuf/src': |
bajones | 1f68ee2 | 2015-06-11 22:57:23 | [diff] [blame] | 445 | Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc72e97f7fe08bb756958a2cf090f4e7', |
nyquist | 38f28ba | 2014-09-04 00:28:38 | [diff] [blame] | 446 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 447 | 'src/third_party/android_tools': |
dgn | e9ec8cc | 2015-12-16 17:18:00 | [diff] [blame] | 448 | Var('chromium_git') + '/android_tools.git' + '@' + 'f4c36ad89b2696b37d9cd7ca7d984b691888b188', |
[email protected] | 9f1235c | 2012-12-04 21:48:36 | [diff] [blame] | 449 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 450 | 'src/third_party/apache-mime4j': |
| 451 | Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108bff4b6cf0a2e86ff58b3d025934ebe3a', |
[email protected] | fd72f73f | 2012-12-06 21:27:58 | [diff] [blame] | 452 | |
kapishnikov | 810c220 | 2016-01-28 21:35:00 | [diff] [blame] | 453 | 'src/third_party/apache-portable-runtime/src': |
| 454 | Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a8c4277e09a82eaa229e35246edea1ee0a6a1', |
| 455 | |
rnephew | 859c2d65 | 2014-11-25 01:57:26 | [diff] [blame] | 456 | 'src/third_party/appurify-python/src': |
| 457 | Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' + '@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 458 | |
bajones | 85d2cee | 2015-06-16 19:25:13 | [diff] [blame] | 459 | 'src/third_party/cardboard-java/src': |
bajones | 0e23d161 | 2015-07-21 20:26:19 | [diff] [blame] | 460 | Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.git' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', |
bajones | 85d2cee | 2015-06-16 19:25:13 | [diff] [blame] | 461 | |
raywilliams | 6ffb117 | 2015-06-22 16:17:37 | [diff] [blame] | 462 | 'src/third_party/errorprone/lib': |
mikecase | bf3dc38d | 2015-09-25 19:19:45 | [diff] [blame] | 463 | Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea83b66343133b9c76b7d3288c30321818ebcf', |
raywilliams | 6ffb117 | 2015-06-22 16:17:37 | [diff] [blame] | 464 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 465 | 'src/third_party/findbugs': |
mikecase | 8161409b | 2015-08-26 21:11:13 | [diff] [blame] | 466 | Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77ea0a194813d3065dd780c6e566', |
[email protected] | 9f1235c | 2012-12-04 21:48:36 | [diff] [blame] | 467 | |
bungeman | 7ffe490 | 2015-06-03 15:41:25 | [diff] [blame] | 468 | 'src/third_party/freetype-android/src': |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 469 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_android_revision'), |
[email protected] | fd72f73f | 2012-12-06 21:27:58 | [diff] [blame] | 470 | |
kapishnikov | 810c220 | 2016-01-28 21:35:00 | [diff] [blame] | 471 | 'src/third_party/elfutils/src': |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 472 | Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
[email protected] | 99ff350 | 2014-05-19 16:49:35 | [diff] [blame] | 473 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 474 | 'src/third_party/httpcomponents-client': |
| 475 | Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '285c4dafc5de0e853fa845dce5773e223219601c', |
[email protected] | fd72f73f | 2012-12-06 21:27:58 | [diff] [blame] | 476 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 477 | 'src/third_party/httpcomponents-core': |
| 478 | Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7180a96f8fa5cab23f793c14b413356d419e62', |
[email protected] | fd72f73f | 2012-12-06 21:27:58 | [diff] [blame] | 479 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 480 | 'src/third_party/jarjar': |
| 481 | Var('chromium_git') + '/chromium/deps/jarjar.git' + '@' + '2e1ead4c68c450e0b77fe49e3f9137842b8b6920', |
[email protected] | da79f32 | 2012-12-01 00:08:45 | [diff] [blame] | 482 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 483 | 'src/third_party/jsr-305/src': |
| 484 | Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
[email protected] | 0fb4c09 | 2012-12-13 19:15:59 | [diff] [blame] | 485 | |
kjellander | c1be042 | 2015-04-29 12:42:32 | [diff] [blame] | 486 | 'src/third_party/junit/src': |
| 487 | Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1346b750c3209019f2e1', |
| 488 | |
mikecase | 85e83ed | 2014-12-08 19:18:29 | [diff] [blame] | 489 | 'src/third_party/mockito/src': |
primiano | ffae9cde | 2015-09-15 10:52:36 | [diff] [blame] | 490 | Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923b81525c42b1333e6c4e07440776c3', |
mikecase | 85e83ed | 2014-12-08 19:18:29 | [diff] [blame] | 491 | |
kapishnikov | 810c220 | 2016-01-28 21:35:00 | [diff] [blame] | 492 | 'src/third_party/netty-tcnative/src': |
| 493 | Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '12d01332921695e974175870175eb14a889313a1', |
| 494 | |
| 495 | 'src/third_party/netty4/src': |
| 496 | Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be19414d0ac81f2ef6ba3c', |
| 497 | |
mikecase | 5ae30e10 | 2015-02-19 19:50:00 | [diff] [blame] | 498 | 'src/third_party/robolectric/lib': |
| 499 | Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b63c99a8b6967acdb42cbed0adb067c80efc810', |
| 500 | |
mikecase | c9eabe8 | 2015-06-15 18:57:59 | [diff] [blame] | 501 | 'src/third_party/ub-uiautomator/lib': |
jbudorick | 8e1be15 | 2015-07-13 23:06:38 | [diff] [blame] | 502 | Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
mikecase | c9eabe8 | 2015-06-15 18:57:59 | [diff] [blame] | 503 | |
agrieve | a1b6200 | 2016-02-24 03:08:30 | [diff] [blame] | 504 | 'src/third_party/leakcanary/src': |
| 505 | Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e', |
| 506 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 507 | 'src/third_party/lss': |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 508 | Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Var('lss_revision'), |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 509 | |
rnephew | 7b35188 | 2014-12-11 23:11:25 | [diff] [blame] | 510 | 'src/third_party/requests/src': |
| 511 | Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 512 | |
pasko | 9e24168 | 2015-06-23 09:06:57 | [diff] [blame] | 513 | 'src/third_party/custom_tabs_client/src': |
yusufo | 01405b8 | 2016-02-17 22:29:29 | [diff] [blame] | 514 | Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-client.git' + '@' + '8ae46d26e739899d2e35f462beeb20e9c194d0ab', |
[email protected] | 18081a1 | 2012-05-30 12:48:56 | [diff] [blame] | 515 | }, |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | |
| 519 | include_rules = [ |
| 520 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 521 | # 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] | 522 | '+base', |
| 523 | '+build', |
| 524 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 525 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 526 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 527 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 528 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 529 | '+testing', |
| 530 | '+third_party/icu/source/common/unicode', |
| 531 | '+third_party/icu/source/i18n/unicode', |
| 532 | '+url', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 533 | ] |
| 534 | |
| 535 | |
| 536 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 537 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 538 | 'breakpad', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 539 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 540 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 541 | 'sdch', |
| 542 | 'skia', |
| 543 | 'testing', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 544 | 'v8', |
| 545 | 'win8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 546 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 547 | |
| 548 | |
| 549 | hooks = [ |
| 550 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 551 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 552 | # first hook so that other things that get/generate into the output |
| 553 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 554 | 'name': 'landmines', |
| 555 | 'pattern': '.', |
| 556 | 'action': [ |
| 557 | 'python', |
| 558 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 559 | ], |
| 560 | }, |
| 561 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 562 | # This downloads binaries for Native Client's newlib toolchain. |
| 563 | # Done in lieu of building the toolchain from scratch as it can take |
| 564 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 565 | 'name': 'nacltools', |
| 566 | 'pattern': '.', |
| 567 | 'action': [ |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 568 | 'python', |
| 569 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 570 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 571 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 572 | ], |
| 573 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 574 | { |
navabi | 6f0bb761 | 2014-12-30 19:21:38 | [diff] [blame] | 575 | # This downloads SDK extras and puts them in the |
dgn | ebe5d99c | 2015-11-06 15:28:51 | [diff] [blame] | 576 | # third_party/android_tools/sdk/extras directory. |
navabi | 6f0bb761 | 2014-12-30 19:21:38 | [diff] [blame] | 577 | 'name': 'sdkextras', |
| 578 | 'pattern': '.', |
navabi | 24606e2 | 2015-01-06 20:46:56 | [diff] [blame] | 579 | # When adding a new sdk extras package to download, add the package |
| 580 | # directory and zip file to .gitignore in third_party/android_tools. |
dgn | ebe5d99c | 2015-11-06 15:28:51 | [diff] [blame] | 581 | 'action': ['python', |
| 582 | 'src/build/android/play_services/update.py', |
| 583 | 'download' |
| 584 | ], |
navabi | 6f0bb761 | 2014-12-30 19:21:38 | [diff] [blame] | 585 | }, |
| 586 | { |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 587 | # Downloads the current stable linux sysroot to build/linux/ if needed. |
[email protected] | 01a9860 | 2013-06-12 20:33:54 | [diff] [blame] | 588 | # This sysroot updates at about the same rate that the chrome build deps |
| 589 | # change. This script is a no-op except for linux users who are doing |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 590 | # official chrome builds or cross compiling. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 591 | 'name': 'sysroot', |
| 592 | 'pattern': '.', |
sbc | 8208b4d | 2015-06-30 19:14:23 | [diff] [blame] | 593 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 594 | '--running-as-hook'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 595 | }, |
| 596 | { |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 597 | # Update the Windows toolchain if necessary. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 598 | 'name': 'win_toolchain', |
| 599 | 'pattern': '.', |
| 600 | 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 601 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 602 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 603 | # debugging when used with clang on Ubuntu Precise. |
| 604 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 605 | { |
| 606 | 'name': 'binutils', |
| 607 | 'pattern': 'src/third_party/binutils', |
| 608 | 'action': [ |
| 609 | 'python', |
| 610 | 'src/third_party/binutils/download.py', |
| 611 | ], |
| 612 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 613 | { |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 614 | # Pull clang if needed or requested via GYP_DEFINES. |
| 615 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 616 | 'name': 'clang', |
| 617 | 'pattern': '.', |
| 618 | 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 619 | }, |
| 620 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 621 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 622 | 'name': 'lastchange', |
| 623 | 'pattern': '.', |
| 624 | 'action': ['python', 'src/build/util/lastchange.py', |
| 625 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 626 | }, |
| 627 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 628 | # Update LASTCHANGE.blink. |
daniimms | 9957817 | 2015-09-30 06:39:24 | [diff] [blame] | 629 | 'name': 'lastchange_blink', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 630 | 'pattern': '.', |
| 631 | 'action': ['python', 'src/build/util/lastchange.py', |
Jochen Eisinger | f880f007 | 2015-09-23 21:06:53 | [diff] [blame] | 632 | '--git-hash-only', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 633 | '-s', 'src/third_party/WebKit', |
| 634 | '-o', 'src/build/util/LASTCHANGE.blink'], |
[email protected] | b0abfb6 | 2013-05-31 10:53:39 | [diff] [blame] | 635 | }, |
sdefresne | 36bf7a62 | 2015-07-23 09:16:30 | [diff] [blame] | 636 | { |
| 637 | # Update CANARY_VERSION. |
| 638 | 'name': 'ios_canary_version', |
| 639 | 'pattern': '.', |
| 640 | 'action': ['python', 'src/ios/build/util/canary_version.py', |
| 641 | '-o', 'src/ios/build/util/CANARY_VERSION'], |
| 642 | }, |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 643 | # Pull GN binaries. This needs to be before running GYP below. |
| 644 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 645 | 'name': 'gn_win', |
| 646 | 'pattern': '.', |
| 647 | 'action': [ 'download_from_google_storage', |
| 648 | '--no_resume', |
| 649 | '--platform=win32', |
| 650 | '--no_auth', |
| 651 | '--bucket', 'chromium-gn', |
| 652 | '-s', 'src/buildtools/win/gn.exe.sha1', |
[email protected] | 66968ba | 2014-03-18 20:27:54 | [diff] [blame] | 653 | ], |
| 654 | }, |
| 655 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 656 | 'name': 'gn_mac', |
| 657 | 'pattern': '.', |
| 658 | 'action': [ 'download_from_google_storage', |
| 659 | '--no_resume', |
| 660 | '--platform=darwin', |
| 661 | '--no_auth', |
| 662 | '--bucket', 'chromium-gn', |
| 663 | '-s', 'src/buildtools/mac/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 664 | ], |
| 665 | }, |
| 666 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 667 | 'name': 'gn_linux64', |
| 668 | 'pattern': '.', |
| 669 | 'action': [ 'download_from_google_storage', |
| 670 | '--no_resume', |
| 671 | '--platform=linux*', |
| 672 | '--no_auth', |
| 673 | '--bucket', 'chromium-gn', |
| 674 | '-s', 'src/buildtools/linux64/gn.sha1', |
[email protected] | 0d5e0582 | 2014-06-18 19:23:19 | [diff] [blame] | 675 | ], |
| 676 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 677 | # Pull clang-format binaries using checked-in hashes. |
| 678 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 679 | 'name': 'clang_format_win', |
| 680 | 'pattern': '.', |
| 681 | 'action': [ 'download_from_google_storage', |
| 682 | '--no_resume', |
| 683 | '--platform=win32', |
| 684 | '--no_auth', |
| 685 | '--bucket', 'chromium-clang-format', |
| 686 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 687 | ], |
| 688 | }, |
| 689 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 690 | 'name': 'clang_format_mac', |
| 691 | 'pattern': '.', |
| 692 | 'action': [ 'download_from_google_storage', |
| 693 | '--no_resume', |
| 694 | '--platform=darwin', |
| 695 | '--no_auth', |
| 696 | '--bucket', 'chromium-clang-format', |
| 697 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 698 | ], |
| 699 | }, |
| 700 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 701 | 'name': 'clang_format_linux', |
| 702 | 'pattern': '.', |
| 703 | 'action': [ 'download_from_google_storage', |
| 704 | '--no_resume', |
| 705 | '--platform=linux*', |
| 706 | '--no_auth', |
| 707 | '--bucket', 'chromium-clang-format', |
| 708 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 709 | ], |
| 710 | }, |
Nico Weber | 7ef5508 | 2015-10-23 04:29:17 | [diff] [blame] | 711 | # Pull the prebuilt libc++ static library for mac. |
| 712 | { |
| 713 | 'name': 'libcpp_mac', |
| 714 | 'pattern': '.', |
| 715 | 'action': [ 'download_from_google_storage', |
| 716 | '--no_resume', |
| 717 | '--platform=darwin', |
| 718 | '--no_auth', |
| 719 | '--bucket', 'chromium-libcpp', |
thakis | f8a27cca | 2015-10-24 07:16:57 | [diff] [blame] | 720 | '-s', 'src/third_party/libc++-static/libc++.a.sha1', |
Nico Weber | 7ef5508 | 2015-10-23 04:29:17 | [diff] [blame] | 721 | ], |
| 722 | }, |
maruel | 4fbba01 | 2015-05-22 21:52:29 | [diff] [blame] | 723 | # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 724 | { |
| 725 | 'name': 'luci-go_win', |
| 726 | 'pattern': '.', |
| 727 | 'action': [ 'download_from_google_storage', |
| 728 | '--no_resume', |
| 729 | '--platform=win32', |
| 730 | '--no_auth', |
| 731 | '--bucket', 'chromium-luci', |
| 732 | '-d', 'src/tools/luci-go/win64', |
| 733 | ], |
| 734 | }, |
| 735 | { |
| 736 | 'name': 'luci-go_mac', |
| 737 | 'pattern': '.', |
| 738 | 'action': [ 'download_from_google_storage', |
| 739 | '--no_resume', |
| 740 | '--platform=darwin', |
| 741 | '--no_auth', |
| 742 | '--bucket', 'chromium-luci', |
| 743 | '-d', 'src/tools/luci-go/mac64', |
| 744 | ], |
| 745 | }, |
| 746 | { |
| 747 | 'name': 'luci-go_linux', |
| 748 | 'pattern': '.', |
| 749 | 'action': [ 'download_from_google_storage', |
| 750 | '--no_resume', |
| 751 | '--platform=linux*', |
| 752 | '--no_auth', |
| 753 | '--bucket', 'chromium-luci', |
| 754 | '-d', 'src/tools/luci-go/linux64', |
| 755 | ], |
| 756 | }, |
[email protected] | e388bfd | 2014-01-18 01:44:04 | [diff] [blame] | 757 | # Pull eu-strip binaries using checked-in hashes. |
| 758 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 759 | 'name': 'eu-strip', |
| 760 | 'pattern': '.', |
| 761 | 'action': [ 'download_from_google_storage', |
| 762 | '--no_resume', |
| 763 | '--platform=linux*', |
| 764 | '--no_auth', |
| 765 | '--bucket', 'chromium-eu-strip', |
| 766 | '-s', 'src/build/linux/bin/eu-strip.sha1', |
[email protected] | e388bfd | 2014-01-18 01:44:04 | [diff] [blame] | 767 | ], |
| 768 | }, |
[email protected] | 4dcd539 | 2013-11-26 18:56:23 | [diff] [blame] | 769 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 770 | 'name': 'drmemory', |
| 771 | 'pattern': '.', |
| 772 | 'action': [ 'download_from_google_storage', |
| 773 | '--no_resume', |
| 774 | '--platform=win32', |
| 775 | '--no_auth', |
| 776 | '--bucket', 'chromium-drmemory', |
| 777 | '-s', 'src/third_party/drmemory/drmemory-windows-sfx.exe.sha1', |
[email protected] | 893f61d1 | 2014-06-05 09:28:10 | [diff] [blame] | 778 | ], |
| 779 | }, |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 780 | # Pull the Syzygy binaries, used for optimization and instrumentation. |
| 781 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 782 | 'name': 'syzygy-binaries', |
| 783 | 'pattern': '.', |
| 784 | 'action': ['python', |
| 785 | 'src/build/get_syzygy_binaries.py', |
| 786 | '--output-dir=src/third_party/syzygy/binaries', |
chrisha | 308e3ee0 | 2016-02-11 23:22:47 | [diff] [blame] | 787 | '--revision=2d774f05a05cbc2f0dd929170c7a62fd549b2c5f', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 788 | '--overwrite', |
[email protected] | f1d116b | 2014-06-13 18:07:26 | [diff] [blame] | 789 | ], |
| 790 | }, |
pmonette | 900a7d3 | 2016-01-05 18:19:07 | [diff] [blame] | 791 | # TODO(pmonette): Move include files out of binaries folder. |
[email protected] | 893f61d1 | 2014-06-05 09:28:10 | [diff] [blame] | 792 | { |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 793 | 'name': 'kasko', |
| 794 | 'pattern': '.', |
| 795 | 'action': ['python', |
| 796 | 'src/build/get_syzygy_binaries.py', |
pmonette | 900a7d3 | 2016-01-05 18:19:07 | [diff] [blame] | 797 | '--output-dir=src/third_party/kasko/binaries', |
pmonette | 4f749125 | 2016-01-14 18:52:55 | [diff] [blame] | 798 | '--revision=266a18d9209be5ca5c5dcd0620942b82a2d238f3', |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 799 | '--resource=kasko.zip', |
| 800 | '--resource=kasko_symbols.zip', |
| 801 | '--overwrite', |
| 802 | ], |
| 803 | }, |
| 804 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 805 | 'name': 'apache_win32', |
| 806 | 'pattern': '\\.sha1', |
| 807 | 'action': [ 'download_from_google_storage', |
| 808 | '--no_resume', |
| 809 | '--platform=win32', |
| 810 | '--directory', |
| 811 | '--recursive', |
| 812 | '--no_auth', |
| 813 | '--num_threads=16', |
| 814 | '--bucket', 'chromium-apache-win32', |
| 815 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 816 | ], |
| 817 | }, |
| 818 | { |
earthdok | d5871322 | 2015-03-23 21:07:20 | [diff] [blame] | 819 | # Pull sanitizer-instrumented third-party libraries if requested via |
| 820 | # GYP_DEFINES. |
| 821 | 'name': 'instrumented_libraries', |
| 822 | 'pattern': '\\.sha1', |
| 823 | 'action': ['python', 'src/third_party/instrumented_libraries/scripts/download_binaries.py'], |
| 824 | }, |
| 825 | { |
mnaganov | b14f3a3 | 2015-06-13 01:14:35 | [diff] [blame] | 826 | # Ensure that while generating dependencies lists in .gyp files we don't |
| 827 | # accidentally reference any .pyc files whose corresponding .py files have |
| 828 | # already been deleted. |
| 829 | # We should actually try to avoid generating .pyc files, crbug.com/500078. |
| 830 | 'name': 'remove_stale_pyc_files', |
| 831 | 'pattern': '.', |
| 832 | 'action': [ |
| 833 | 'python', |
| 834 | 'src/tools/remove_stale_pyc_files.py', |
| 835 | 'src/android_webview/tools', |
| 836 | 'src/gpu/gles2_conform_support', |
Paweł Hajdan, Jr | b37bde52 | 2015-08-18 10:32:58 | [diff] [blame] | 837 | 'src/infra', |
mnaganov | b14f3a3 | 2015-06-13 01:14:35 | [diff] [blame] | 838 | 'src/ppapi', |
| 839 | 'src/printing', |
| 840 | 'src/third_party/closure_compiler/build', |
| 841 | 'src/tools', |
| 842 | ], |
| 843 | }, |
| 844 | { |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 845 | # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 846 | 'name': 'gyp', |
| 847 | 'pattern': '.', |
| 848 | 'action': ['python', 'src/build/gyp_chromium'], |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 849 | }, |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 850 | ] |