blob: 779843934a0d241aeb39390141b8b15089ecd9ca [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001# When adding a new dependency, please update the top-level .gitignore file
2# to list the dependency's destination directory.
3
4vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn",
Ben Murdoch2385ea32013-08-06 11:01:04 +01008 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code",
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01009 "webkit_trunk": "http://src.chromium.org/blink/trunk",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000010 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
Ben Murdochbb1529c2013-08-08 10:24:53 +010011 "webkit_revision": "155688",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000012 "chromium_git": "https://chromium.googlesource.com",
13 "chromiumos_git": "https://chromium.googlesource.com/chromiumos",
Ben Murdochbb1529c2013-08-08 10:24:53 +010014 "skia_git": "https://skia.googlesource.com",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000015 "swig_revision": "69281",
Ben Murdoch32409262013-08-07 11:04:47 +010016 "nacl_revision": "11930",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000017 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS
18 # to update other nacl_*_revision's.
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010019 "nacl_tools_revision": "11437", # native_client/DEPS: tools_rev
Ben Murdocheb525c52013-07-10 11:40:50 +010020 "gtm_revision": "616",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000021
Ben Murdocheb525c52013-07-10 11:40:50 +010022 "libphonenumber_revision": "584",
Ben Murdochca12bfa2013-07-23 11:17:05 +010023 "libvpx_revision": "212364",
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010024 "lss_revision": "20",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000025
26 # These two FFmpeg variables must be updated together. One is used for SVN
27 # checkouts and the other for Git checkouts.
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010028 "ffmpeg_revision": "214392",
29 "ffmpeg_hash": "894e6f715645528e815aee2dad45b59704238dcd",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000030
31 "sfntly_revision": "134",
Ben Murdochbb1529c2013-08-08 10:24:53 +010032 "skia_revision": "10602",
33 "skia_hash": "6d04e64f56b658635eeb46fcdb02188ce54f1567",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000034 # Three lines of non-changing comments so that
35 # the commit queue can handle CLs rolling Skia
36 # and V8 without interference from each other.
Ben Murdochbb1529c2013-08-08 10:24:53 +010037 "v8_revision": "16104",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000038 # Three lines of non-changing comments so that
39 # the commit queue can handle CLs rolling WebRTC
40 # and V8 without interference from each other.
Ben Murdoch32409262013-08-07 11:04:47 +010041 "webrtc_revision": "4490",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000042 "jsoncpp_revision": "248",
Ben Murdocheb525c52013-07-10 11:40:50 +010043 "nss_revision": "209026",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000044 # Three lines of non-changing comments so that
45 # the commit queue can handle CLs rolling swarm_client
46 # and whatever else without interference from each other.
Ben Murdoch58e6fbe2013-07-26 10:20:38 +010047 "swarm_revision": "213621",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000048 # Three lines of non-changing comments so that
49 # the commit queue can handle CLs rolling openssl
50 # and whatever else without interference from each other.
Ben Murdocheb525c52013-07-10 11:40:50 +010051 "openssl_revision": "207965",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000052}
53
54deps = {
55 "src/breakpad/src":
Ben Murdocheb525c52013-07-10 11:40:50 +010056 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1199",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000057
58 "src/googleurl":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010059 (Var("googlecode_url") % "google-url") + "/trunk@185",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000060
Torne (Richard Coles)58218062012-11-14 11:43:16 +000061 "src/sdch/open-vcdiff":
62 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42",
63
64 "src/testing/gtest":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000065 (Var("googlecode_url") % "googletest") + "/trunk@629",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000066
67 "src/testing/gmock":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000068 (Var("googlecode_url") % "googlemock") + "/trunk@410",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000069
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010070 "src/third_party/angle_dx11":
Ben Murdocheb525c52013-07-10 11:40:50 +010071 Var("chromium_git") +
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010072 "/external/angle.git@b93f84acdecd3eebf316750d8024b8b592c9012b",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000073
74 "src/third_party/trace-viewer":
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010075 (Var("googlecode_url") % "trace-viewer") + "/trunk@816",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000076
Torne (Richard Coles)58218062012-11-14 11:43:16 +000077 "src/third_party/WebKit":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010078 Var("webkit_trunk") + "@" + Var("webkit_revision"),
Torne (Richard Coles)58218062012-11-14 11:43:16 +000079
80 "src/third_party/icu":
Ben Murdoch558790d2013-07-30 15:19:42 +010081 "/trunk/deps/third_party/icu46@214189",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000082
83 "src/third_party/libexif/sources":
84 "/trunk/deps/third_party/libexif/sources@146817",
85
86 "src/third_party/hunspell":
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010087 "/trunk/deps/third_party/hunspell@206172",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000088
89 "src/third_party/hunspell_dictionaries":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010090 "/trunk/deps/third_party/hunspell_dictionaries@193701",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000091
92 "src/third_party/safe_browsing/testing":
93 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112",
94
95 "src/third_party/cacheinvalidation/src":
96 (Var("googlecode_url") % "google-cache-invalidation-api") +
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010097 "/trunk/src@309",
Torne (Richard Coles)58218062012-11-14 11:43:16 +000098
99 "src/third_party/leveldatabase/src":
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100100 (Var("googlecode_url") % "leveldb") + "/trunk@75",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000101
102 "src/third_party/snappy/src":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100103 (Var("googlecode_url") % "snappy") + "/trunk@74",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000104
105 "src/tools/grit":
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100106 (Var("googlecode_url") % "grit-i18n") + "/trunk@129",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000107
108 "src/tools/gyp":
Ben Murdochca12bfa2013-07-23 11:17:05 +0100109 (Var("googlecode_url") % "gyp") + "/trunk@1682",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000110
111 "src/tools/swarm_client":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000112 "/trunk/tools/swarm_client@" + Var("swarm_revision"),
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000113
114 "src/v8":
115 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"),
116
117 "src/native_client":
118 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"),
119
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000120 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin":
121 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" +
122 Var("nacl_revision"),
123
124 "src/third_party/sfntly/cpp/src":
125 (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src@" +
126 Var("sfntly_revision"),
127
128 "src/third_party/skia/src":
129 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"),
130
131 "src/third_party/skia/gyp":
132 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"),
133
134 "src/third_party/skia/include":
135 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"),
136
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000137 "src/third_party/ots":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100138 (Var("googlecode_url") % "ots") + "/trunk@102",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000139
140 "src/tools/page_cycler/acid3":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000141 "/trunk/deps/page_cycler/acid3@171600",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000142
143 "src/chrome/test/data/perf/canvas_bench":
144 "/trunk/deps/canvas_bench@122605",
145
146 "src/chrome/test/data/perf/frame_rate/content":
147 "/trunk/deps/frame_rate/content@93671",
148
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000149 "src/chrome/test/data/perf/third_party/octane":
150 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19",
151
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000152 "src/third_party/bidichecker":
153 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4",
154
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000155 # When roll to another webgl conformance tests revision, please goto
156 # chrome/test/gpu and run generate_webgl_conformance_test_list.py.
157 "src/third_party/webgl_conformance":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100158 "/trunk/deps/third_party/webgl/sdk/tests@202601",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000159
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000160 "src/third_party/swig/Lib":
161 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"),
162
163 # Make sure you update the two functional.DEPS and webdriver.DEPS too.
164 "src/third_party/webdriver/pylib":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100165 (Var("googlecode_url") % "selenium") + "/trunk/py@18337",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000166
167 "src/third_party/libvpx":
168 "/trunk/deps/third_party/libvpx@" +
169 Var("libvpx_revision"),
170
171 "src/third_party/ffmpeg":
172 "/trunk/deps/third_party/ffmpeg@" +
173 Var("ffmpeg_revision"),
174
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100175 "src/third_party/libjingle/source/talk":
176 (Var("googlecode_url") % "webrtc") + "/stable/talk@" +
177 Var("webrtc_revision"),
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000178
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100179 "src/third_party/usrsctp/usrsctplib":
180 (Var("googlecode_url") % "sctp-refimpl") +
Ben Murdoch32409262013-08-07 11:04:47 +0100181 "/trunk/KERN/usrsctp/usrsctplib@8554",
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100182
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000183 "src/third_party/libsrtp":
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100184 "/trunk/deps/third_party/libsrtp@214783",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000185
186 "src/third_party/speex":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100187 "/trunk/deps/third_party/speex@198168",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000188
189 "src/third_party/yasm/source/patched-yasm":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000190 "/trunk/deps/third_party/yasm/patched-yasm@167605",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000191
192 "src/third_party/libjpeg_turbo":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000193 "/trunk/deps/third_party/libjpeg_turbo@177737",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000194
195 "src/third_party/flac":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100196 "/trunk/deps/third_party/flac@198139",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000197
198 "src/third_party/pyftpdlib/src":
199 (Var("googlecode_url") % "pyftpdlib") + "/trunk@977",
200
201 "src/third_party/scons-2.0.1":
202 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
203 Var("nacl_tools_revision"),
204
205 "src/third_party/webrtc":
206 (Var("googlecode_url") % "webrtc") + "/stable/webrtc@" + Var("webrtc_revision"),
207
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100208 "src/third_party/openmax_dl":
Ben Murdocheb525c52013-07-10 11:40:50 +0100209 (Var("googlecode_url") % "webrtc") + "/deps/third_party/openmax@4261",
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100210
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000211 "src/third_party/jsoncpp/source/include":
212 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
213 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"),
214
215 "src/third_party/jsoncpp/source/src/lib_json":
216 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
217 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
218
219 "src/third_party/libyuv":
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100220 (Var("googlecode_url") % "libyuv") + "/trunk@723",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000221
222 "src/third_party/smhasher/src":
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100223 (Var("googlecode_url") % "smhasher") + "/trunk@149",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000224
225 "src/third_party/libphonenumber/src/phonenumbers":
226 (Var("googlecode_url") % "libphonenumber") +
227 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"),
228 "src/third_party/libphonenumber/src/test":
229 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" +
230 Var("libphonenumber_revision"),
231 "src/third_party/libphonenumber/src/resources":
232 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" +
233 Var("libphonenumber_revision"),
234
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000235 "src/tools/deps2git":
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +0100236 "/trunk/tools/deps2git@214390",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000237
238 "src/third_party/webpagereplay":
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100239 (Var("googlecode_url") % "web-page-replay") + "/trunk@518",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000240
241 "src/third_party/pywebsocket/src":
242 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662",
243
244 "src/third_party/opus/src":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000245 "/trunk/deps/third_party/opus@185324",
246
247 "src/third_party/accessibility-developer-tools":
Ben Murdoch2385ea32013-08-06 11:01:04 +0100248 Var("chromium_git") + "/external/accessibility-developer-tools.git@2e3c9c8e49277a0ca1eeba510271eb03f9486d8f",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000249
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100250 "src/webkit/renderer/media/crypto/ppapi/cdm":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000251 "/trunk/deps/cdm@181763",
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100252
253 "src/third_party/mesa/src":
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100254 "/trunk/deps/third_party/mesa@210110",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000255}
256
257
258deps_os = {
259 "win": {
260 "src/chrome/tools/test/reference_build/chrome_win":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100261 "/trunk/deps/reference_builds/chrome_win@197743",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000262
263 "src/third_party/cygwin":
264 "/trunk/deps/third_party/cygwin@133786",
265
266 "src/third_party/python_26":
267 "/trunk/tools/third_party/python_26@89111",
268
269 "src/third_party/psyco_win32":
270 "/trunk/deps/third_party/psyco_win32@79861",
271
272 "src/third_party/bison":
273 "/trunk/deps/third_party/bison@147303",
274
275 "src/third_party/gperf":
276 "/trunk/deps/third_party/gperf@147304",
277
278 "src/third_party/perl":
279 "/trunk/deps/third_party/perl@147900",
280
281 "src/third_party/lighttpd":
282 "/trunk/deps/third_party/lighttpd@33727",
283
284 # Chrome Frame related deps
285 "src/third_party/xulrunner-sdk":
286 "/trunk/deps/third_party/xulrunner-sdk@119756",
287 "src/chrome_frame/tools/test/reference_build/chrome_win":
288 "/trunk/deps/reference_builds/chrome_win@89574",
289
290 # Parses Windows PE/COFF executable format.
291 "src/third_party/pefile":
292 (Var("googlecode_url") % "pefile") + "/trunk@63",
293
294 # NSS, for SSLClientSocketNSS.
295 "src/third_party/nss":
296 "/trunk/deps/third_party/nss@" + Var("nss_revision"),
297
298 "src/third_party/swig/win":
299 "/trunk/deps/third_party/swig/win@" + Var("swig_revision"),
300
301 # GNU binutils assembler for x86-32.
302 "src/third_party/gnu_binutils":
303 (Var("nacl_trunk") + "/deps/third_party/gnu_binutils@" +
304 Var("nacl_tools_revision")),
305 # GNU binutils assembler for x86-64.
306 "src/third_party/mingw-w64/mingw/bin":
307 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" +
308 Var("nacl_tools_revision")),
309
310 # Dependencies used by libjpeg-turbo
311 "src/third_party/yasm/binaries":
312 "/trunk/deps/third_party/yasm/binaries@154708",
313
314 # Binary level profile guided optimizations. This points to the
315 # latest release binaries for the toolchain.
316 "src/third_party/syzygy/binaries":
Ben Murdochbb1529c2013-08-08 10:24:53 +0100317 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1718",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000318
319 # Binaries for nacl sdk.
320 "src/third_party/nacl_sdk_binaries":
321 "/trunk/deps/third_party/nacl_sdk_binaries@111576",
322 },
323 "ios": {
324 "src/third_party/GTM":
325 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" +
326 Var("gtm_revision"),
327
328 "src/third_party/nss":
329 "/trunk/deps/third_party/nss@" + Var("nss_revision"),
330
331 # class-dump utility to generate header files for undocumented SDKs
332 "src/testing/iossim/third_party/class-dump":
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100333 "/trunk/deps/third_party/class-dump@199203",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000334
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100335 # Code that's not needed due to not building everything
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000336 "src/build/util/support": None,
337 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000338 "src/chrome/test/data/perf/canvas_bench": None,
339 "src/chrome/test/data/perf/frame_rate/content": None,
340 "src/native_client": None,
341 "src/native_client/src/third_party/ppapi": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000342 "src/third_party/angle": None,
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100343 "src/third_party/angle_dx11": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000344 "src/third_party/bidichecker": None,
345 "src/third_party/webgl_conformance": None,
346 "src/third_party/ffmpeg": None,
347 "src/third_party/hunspell_dictionaries": None,
348 "src/third_party/hunspell": None,
349 "src/third_party/leveldatabase/src": None,
350 "src/third_party/libexif/sources": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000351 "src/third_party/libjpeg_turbo": None,
352 "src/third_party/libphonenumber/src/phonenumbers": None,
353 "src/third_party/libphonenumber/src/test": None,
354 "src/third_party/libphonenumber/src/resources": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000355 "src/third_party/libsrtp": None,
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100356 "src/third_party/usrsctp/usrsctplib": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000357 "src/third_party/libvpx": None,
358 "src/third_party/libyuv": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000359 "src/third_party/ots": None,
360 "src/third_party/pylib": None,
361 "src/third_party/pymox/src": None,
362 "src/third_party/safe_browsing/testing": None,
363 "src/third_party/scons-2.0.1": None,
364 "src/third_party/sfntly/cpp/src": None,
365 "src/third_party/smhasher/src": None,
366 "src/third_party/snappy/src": None,
367 "src/third_party/swig/Lib": None,
368 "src/third_party/undoview": None,
369 "src/third_party/v8-i18n": None,
370 "src/third_party/webdriver/pylib": None,
371 "src/third_party/webpagereplay": None,
372 "src/third_party/webrtc": None,
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000373 "src/third_party/yasm/source/patched-yasm": None,
374 "src/tools/page_cycler/acid3": None,
375 "src/v8": None,
376 },
377 "mac": {
378 "src/chrome/tools/test/reference_build/chrome_mac":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100379 "/trunk/deps/reference_builds/chrome_mac@197743",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000380
381 "src/third_party/GTM":
382 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" +
383 Var("gtm_revision"),
384 "src/third_party/pdfsqueeze":
385 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@5",
386 "src/third_party/lighttpd":
387 "/trunk/deps/third_party/lighttpd@33737",
388
389 "src/third_party/swig/mac":
390 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"),
391
392 # NSS, for SSLClientSocketNSS.
393 "src/third_party/nss":
394 "/trunk/deps/third_party/nss@" + Var("nss_revision"),
395
396 "src/chrome/installer/mac/third_party/xz/xz":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000397 "/trunk/deps/third_party/xz@189101",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000398 },
399 "unix": {
400 # Linux, really.
401 "src/chrome/tools/test/reference_build/chrome_linux":
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100402 "/trunk/deps/reference_builds/chrome_linux@197743",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000403
404 "src/third_party/xdg-utils":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100405 "/trunk/deps/third_party/xdg-utils@203785",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000406
407 "src/third_party/swig/linux":
408 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"),
409
410 "src/third_party/lss":
411 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" +
412 Var("lss_revision")),
413
414 "src/third_party/openssl":
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000415 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"),
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000416
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000417 "src/third_party/gold":
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100418 "/trunk/deps/third_party/gold@203758",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000419
420 "src/third_party/libmtp":
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100421 "/trunk/deps/third_party/libmtp@206535",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000422
423 # Used on Linux only. CrOS already has a copy.
424 "src/third_party/mtpd/source":
425 Var("chromiumos_git") + "/platform/mtpd.git" +
Ben Murdocheb525c52013-07-10 11:40:50 +0100426 "@5be739c938a0a229ba9479b00b180e1f9c843e81",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000427
428 # Used on Linux only. CrOS already has a copy.
429 "src/third_party/cros_dbus_cplusplus/source":
430 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" +
431 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900",
432
433 # For Linux and Chromium OS.
434 "src/third_party/cros_system_api":
435 Var("chromiumos_git") + "/platform/system_api.git" +
Ben Murdoch558790d2013-07-30 15:19:42 +0100436 "@9bad33f702cd5cefb0d5603d6853b26428425081",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000437
438 # Note that this is different from Android's freetype repo.
439 "src/third_party/freetype2/src":
440 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" +
441 "@d699c2994ecc178c4ed05ac2086061b2034c2178",
442
443 # Build tools for targeting ChromeOS.
444 "src/third_party/chromite":
445 Var("chromiumos_git") + "/chromite.git" +
Ben Murdochfb250652013-07-31 11:42:55 +0100446 "@214fb6506eda13715edd74087adf367a29809a3c",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000447
448 # Dependency of chromite.git.
449 "src/third_party/pyelftools":
450 Var("chromiumos_git") + "/third_party/pyelftools.git" +
451 "@bdc1d380acd88d4bfaf47265008091483b0d614e",
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100452
453 "src/third_party/undoview":
454 "/trunk/deps/third_party/undoview@119694",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000455 },
456 "android": {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000457 "src/third_party/android_tools":
458 Var("chromium_git") + "/android_tools.git" +
Ben Murdoch558790d2013-07-30 15:19:42 +0100459 "@eda719cf5bf102f38b17fe4f583fbc5fde581be6",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000460
461 "src/third_party/aosp":
462 "/trunk/deps/third_party/aosp@148330",
463
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000464 "src/third_party/apache-mime4j":
465 "/trunk/deps/third_party/apache-mime4j@170888",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000466
467 "src/third_party/findbugs":
468 "/trunk/deps/third_party/findbugs@163586",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000469
470 "src/third_party/freetype":
471 Var("chromium_git") + "/chromium/src/third_party/freetype.git" +
472 "@96551feab72aac26836e9aaf4fae0962d39d5ab0",
473
474 "src/third_party/guava/src":
475 Var("chromium_git") + "/external/guava-libraries.git" +
476 "@c523556ab7d0f05afadebd20e7768d4c16af8771",
477
478 "src/third_party/httpcomponents-client":
479 "/trunk/deps/third_party/httpcomponents-client@170888",
480
481 "src/third_party/httpcomponents-core":
482 "/trunk/deps/third_party/httpcomponents-core@170888",
483
484 "src/third_party/jarjar":
485 "/trunk/deps/third_party/jarjar@170888",
486
487 "src/third_party/jsr-305/src":
488 (Var("googlecode_url") % "jsr-305") + "/trunk@51",
489
490 "src/third_party/lss":
491 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" +
492 Var("lss_revision")),
493
494 "src/third_party/openssl":
495 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"),
496
497 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille":
498 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/googlecode/eyesfree/braille@797",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000499 },
500}
501
502
503include_rules = [
504 # Everybody can use some things.
505 "+base",
506 "+build",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000507 "+ipc",
508
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000509 # Everybody can use headers generated by tools/generate_library_loader.
510 "+library_loaders",
511
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000512 "+testing",
Ben Murdochca12bfa2013-07-23 11:17:05 +0100513 "+third_party/icu/source/common/unicode",
514 "+third_party/icu/source/i18n/unicode",
Ben Murdocheb525c52013-07-10 11:40:50 +0100515 "+url",
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100516 # TODO(tfarina): Temporary, until we finish the migration to url. Remove this!
517 "!googleurl",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000518]
519
520
521# checkdeps.py shouldn't check include paths for files in these dirs:
522skip_child_includes = [
523 "breakpad",
524 "chrome_frame",
525 "delegate_execute",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000526 "googleurl",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000527 "metro_driver",
528 "native_client_sdk",
529 "o3d",
530 "pdf",
531 "sdch",
532 "skia",
533 "testing",
534 "third_party",
535 "v8",
536 "win8",
537]
538
539
540hooks = [
541 {
542 # This downloads binaries for Native Client's newlib toolchain.
543 # Done in lieu of building the toolchain from scratch as it can take
544 # anywhere from 30 minutes to 4 hours depending on platform to build.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100545 "name": "nacltools",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000546 "pattern": ".",
547 "action": [
548 "python", "src/build/download_nacl_toolchains.py",
549 "--no-arm-trusted",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000550 "--keep",
551 ],
552 },
553 {
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100554 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000555 # at about the same rate that the chrome build deps change.
556 # This script is a no-op except for linux users who have
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100557 # target_arch=arm in their GYP_DEFINES.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100558 "name": "sysroot",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000559 "pattern": ".",
560 "action": ["python", "src/build/linux/install-arm-sysroot.py",
561 "--linux-only"],
562 },
563 {
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100564 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
565 # This sysroot updates at about the same rate that the chrome build deps
566 # change. This script is a no-op except for linux users who are doing
567 # official chrome builds.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100568 "name": "sysroot",
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100569 "pattern": ".",
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100570 "action": [
571 "python",
572 "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py",
573 "--linux-only",
574 "--arch=amd64"],
575 },
576 {
577 # Same as above, but for 32-bit Linux.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100578 "name": "sysroot",
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100579 "pattern": ".",
580 "action": [
581 "python",
582 "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py",
583 "--linux-only",
584 "--arch=i386"],
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100585 },
586 {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000587 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
588 # zero seconds to run. If something changed, it downloads a prebuilt clang,
589 # which takes ~20s, but clang speeds up builds by more than 20s.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100590 "name": "clang",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000591 "pattern": ".",
592 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
593 },
594 {
595 # Update the cygwin mount on Windows.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100596 "name": "cygwin",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000597 "pattern": ".",
598 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"],
599 },
600 {
601 # Update LASTCHANGE. This is also run by export_tarball.py in
602 # src/tools/export_tarball - please keep them in sync.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100603 "name": "lastchange",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000604 "pattern": ".",
605 "action": ["python", "src/build/util/lastchange.py",
606 "-o", "src/build/util/LASTCHANGE"],
607 },
608 {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100609 # Update LASTCHANGE.blink. This is also run by export_tarball.py in
610 # src/tools/export_tarball - please keep them in sync.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100611 "name": "lastchange",
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100612 "pattern": ".",
613 "action": ["python", "src/build/util/lastchange.py",
614 "-s", "src/third_party/WebKit",
615 "-o", "src/build/util/LASTCHANGE.blink"],
616 },
617 {
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000618 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100619 "name": "gyp",
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000620 "pattern": ".",
621 "action": ["python", "src/build/gyp_chromium"],
622 },
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000623 {
624 # Check for landmines (reasons to clobber the build).
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100625 "name": "landmines",
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000626 "pattern": ".",
627 "action": ["python", "src/build/landmines.py"],
628 },
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000629]