Revert 168224 - Update V8 to version 3.15.4.
[chromium-blink-merge.git] / DEPS
blob9cb1105b256b458dc808218639d2e9a52458d1fd
1 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory.
4 vars = {
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",
8   "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
9   "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
10   "nacl_trunk": "http://src.chromium.org/native_client/trunk",
11   "webkit_revision": "134928",
13   "chromium_git": "http://git.chromium.org/git",
14   "chromiumos_git": "http://git.chromium.org/chromiumos",
15   "swig_revision": "69281",
16   "nacl_revision": "10264",
17   # After changing nacl_revision, run 'glient sync' and check native_client/DEPS
18   # to update other nacl_*_revision's.
19   "nacl_tools_revision": "10001",  # native_client/DEPS: tools_rev
20   "gtm_revision": "578",
22   "libjingle_revision": "235",
23   "libphonenumber_revision": "456",
24   "libvpx_revision": "165134",
25   "lss_revision": "17",
27   # These two FFmpeg variables must be updated together.  One is used for SVN
28   # checkouts and the other for Git checkouts.
29   "ffmpeg_revision": "166067",
30   "ffmpeg_hash": "ca54d18833e0caccbc4bcddc3df9f15d08c4b567",
32   "sfntly_revision": "134",
33   "skia_revision": "6446",
34   # 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.
37   "v8_revision": "12947",
38   # 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.
41   "webrtc_revision": "3088",
42   "jsoncpp_revision": "248",
43   "nss_revision": "166832",
46 deps = {
47   "src/breakpad/src":
48     (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1082",
50   "src/googleurl":
51     (Var("googlecode_url") % "google-url") + "/trunk@180",
53   "src/sandbox/linux/seccomp-legacy":
54     (Var("googlecode_url") % "seccompsandbox") + "/trunk@188",
56   "src/sdch/open-vcdiff":
57     (Var("googlecode_url") % "open-vcdiff") + "/trunk@42",
59   "src/testing/gtest":
60     (Var("googlecode_url") % "googletest") + "/trunk@621",
62   "src/testing/gmock":
63     (Var("googlecode_url") % "googlemock") + "/trunk@405",
65   "src/third_party/angle":
66     (Var("googlecode_url") % "angleproject") + "/trunk@1389",
68   "src/third_party/trace-viewer":
69     (Var("googlecode_url") % "trace-viewer") + "/trunk@179",
71   # Note that this is *not* where we check out WebKit -- this just
72   # puts some extra files into place for the real WebKit checkout to
73   # happen.  See lines mentioning "webkit_revision" for the real
74   # WebKit checkout.
75   "src/third_party/WebKit":
76     "/trunk/deps/third_party/WebKit@76115",
78   "src/third_party/icu":
79     "/trunk/deps/third_party/icu46@161442",
81   "src/third_party/libexif/sources":
82     "/trunk/deps/third_party/libexif/sources@146817",
84   "src/third_party/hunspell":
85    "/trunk/deps/third_party/hunspell@149334",
87   "src/third_party/hunspell_dictionaries":
88     "/trunk/deps/third_party/hunspell_dictionaries@164817",
90   "src/third_party/safe_browsing/testing":
91     (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112",
93   "src/third_party/cacheinvalidation/src":
94     (Var("googlecode_url") % "google-cache-invalidation-api") +
95     "/trunk/src@245",
97   "src/third_party/leveldatabase/src":
98     (Var("googlecode_url") % "leveldb") + "/trunk@68",
100   "src/third_party/snappy/src":
101     (Var("googlecode_url") % "snappy") + "/trunk@63",
103   "src/tools/grit":
104     (Var("googlecode_url") % "grit-i18n") + "/trunk@84",
106   "src/tools/gyp":
107     (Var("googlecode_url") % "gyp") + "/trunk@1535",
109   "src/tools/swarm_client":
110     "/trunk/tools/swarm_client@168204",
112   "src/v8":
113     (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"),
115   "src/native_client":
116     Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"),
118   "src/third_party/pymox/src":
119     (Var("googlecode_url") % "pymox") + "/trunk@70",
121   "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin":
122     Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" +
123     Var("nacl_revision"),
125   "src/third_party/sfntly/cpp/src":
126     (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src@" +
127     Var("sfntly_revision"),
129   "src/third_party/skia/src":
130     (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"),
132   "src/third_party/skia/gyp":
133     (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"),
135   "src/third_party/skia/include":
136     (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"),
138   "src/third_party/WebKit/LayoutTests":
139     Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"),
141   "src/third_party/WebKit/Source":
142     Var("webkit_trunk") + "/Source@" + Var("webkit_revision"),
144   "src/third_party/WebKit/Tools/DumpRenderTree":
145     Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"),
147   "src/third_party/WebKit/Tools/Scripts":
148     Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"),
150   "src/third_party/WebKit/Tools/TestWebKitAPI":
151     Var("webkit_trunk") + "/Tools/TestWebKitAPI@" + Var("webkit_revision"),
153   "src/third_party/ots":
154     (Var("googlecode_url") % "ots") + "/trunk@95",
156   "src/tools/page_cycler/acid3":
157     "/trunk/deps/page_cycler/acid3@150075",
159   "src/chrome/test/data/perf/canvas_bench":
160     "/trunk/deps/canvas_bench@122605",
162   "src/chrome/test/data/perf/frame_rate/content":
163     "/trunk/deps/frame_rate/content@93671",
165   "src/third_party/bidichecker":
166     (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4",
168   "src/third_party/v8-i18n":
169     (Var("googlecode_url") % "v8-i18n") + "/trunk@157",
171   # When roll to another webgl conformance tests revision, please goto
172   # chrome/test/gpu and run generate_webgl_conformance_test_list.py.
173   "src/third_party/webgl_conformance":
174     "/trunk/deps/third_party/webgl/sdk/tests@148561",
176   # We run these layout tests as UI tests. Since many of the buildbots that
177   # run layout tests do NOT have access to the LayoutTest directory, we need
178   # to map them here. In practice, these do not take up much space.
179   "src/content/test/data/layout_tests/LayoutTests/fast/events":
180     Var("webkit_trunk") + "/LayoutTests/fast/events@" +
181     Var("webkit_revision"),
182   "src/content/test/data/layout_tests/LayoutTests/fast/js/resources":
183     Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" +
184     Var("webkit_revision"),
185   "src/content/test/data/layout_tests/LayoutTests/fast/workers":
186     Var("webkit_trunk") + "/LayoutTests/fast/workers@" +
187     Var("webkit_revision"),
188   "src/content/test/data/layout_tests/LayoutTests/http/tests/resources":
189     Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" +
190     Var("webkit_revision"),
191   "src/content/test/data/layout_tests/LayoutTests/http/tests/workers":
192     Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" +
193     Var("webkit_revision"),
194   "src/content/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest":
195     Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" +
196     Var("webkit_revision"),
197   "src/content/test/data/layout_tests/LayoutTests/http/tests/websocket/tests":
198     Var("webkit_trunk") + "/LayoutTests/http/tests/websocket/tests@" +
199     Var("webkit_revision"),
200   "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers":
201     Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/workers@" +
202     Var("webkit_revision"),
203   "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/events":
204     Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/events@" +
205     Var("webkit_revision"),
206   "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/events":
207     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/events@" +
208     Var("webkit_revision"),
209   "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/workers":
210     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/workers@" +
211     Var("webkit_revision"),
212   "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache":
213     Var("webkit_trunk") + "/LayoutTests/http/tests/appcache@" +
214     Var("webkit_revision"),
215   "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/http/tests/workers":
216     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers@" +
217     Var("webkit_revision"),
218   "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/domstorage":
219     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage@" +
220     Var("webkit_revision"),
221   "src/content/test/data/layout_tests/LayoutTests/storage/domstorage":
222     Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" +
223     Var("webkit_revision"),
224   "src/content/test/data/layout_tests/LayoutTests/storage/indexeddb":
225     Var("webkit_trunk") + "/LayoutTests/storage/indexeddb@" +
226     Var("webkit_revision"),
227   "src/content/test/data/layout_tests/LayoutTests/fast/files":
228     Var("webkit_trunk") + "/LayoutTests/fast/files@" +
229     Var("webkit_revision"),
230   "src/content/test/data/layout_tests/LayoutTests/fast/filesystem/resources":
231     Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" +
232     Var("webkit_revision"),
233   "src/content/test/data/layout_tests/LayoutTests/media":
234     Var("webkit_trunk") + "/LayoutTests/media@" +
235     Var("webkit_revision"),
237   "src/third_party/swig/Lib":
238     "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"),
240   # Make sure you update the two functional.DEPS and webdriver.DEPS too.
241   "src/third_party/webdriver/pylib":
242     (Var("googlecode_url") % "selenium") + "/trunk/py@16922",
244   "src/third_party/libvpx":
245     "/trunk/deps/third_party/libvpx@" +
246     Var("libvpx_revision"),
248   "src/third_party/ffmpeg":
249     "/trunk/deps/third_party/ffmpeg@" +
250     Var("ffmpeg_revision"),
252   "src/third_party/libjingle/source":
253     (Var("googlecode_url") % "libjingle") + "/trunk@" +
254     Var("libjingle_revision"),
256   "src/third_party/libsrtp":
257     "/trunk/deps/third_party/libsrtp@162569",
259   "src/third_party/speex":
260     "/trunk/deps/third_party/speex@160092",
262   "src/third_party/yasm/source/patched-yasm":
263     "/trunk/deps/third_party/yasm/patched-yasm@154708",
265   "src/third_party/libjpeg_turbo":
266     "/trunk/deps/third_party/libjpeg_turbo@149334",
268   "src/third_party/flac":
269     "/trunk/deps/third_party/flac@160844",
271   "src/third_party/pyftpdlib/src":
272     (Var("googlecode_url") % "pyftpdlib") + "/trunk@977",
274   "src/third_party/scons-2.0.1":
275     Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
276         Var("nacl_tools_revision"),
278   "src/third_party/webrtc":
279     (Var("googlecode_url") % "webrtc") + "/stable/webrtc@" + Var("webrtc_revision"),
281   "src/third_party/jsoncpp/source/include":
282     (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
283         "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"),
285   "src/third_party/jsoncpp/source/src/lib_json":
286     (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
287         "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
289   "src/third_party/libyuv":
290     (Var("googlecode_url") % "libyuv") + "/trunk@481",
292   "src/third_party/mozc/session":
293     (Var("googlecode_url") % "mozc") + "/trunk/src/session@83",
295   "src/third_party/mozc/chrome/chromeos/renderer":
296     (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83",
298   "src/third_party/smhasher/src":
299     (Var("googlecode_url") % "smhasher") + "/trunk@147",
301   "src/third_party/libphonenumber/src/phonenumbers":
302      (Var("googlecode_url") % "libphonenumber") +
303          "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"),
304   "src/third_party/libphonenumber/src/test":
305      (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" +
306          Var("libphonenumber_revision"),
307   "src/third_party/libphonenumber/src/resources":
308      (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" +
309          Var("libphonenumber_revision"),
311   "src/third_party/undoview":
312     "/trunk/deps/third_party/undoview@119694",
314   "src/tools/deps2git":
315     "/trunk/tools/deps2git@163971",
317   "src/third_party/webpagereplay":
318     (Var("googlecode_url") % "web-page-replay") + "/trunk@501",
320   "src/third_party/pywebsocket/src":
321     (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662",
323   "src/third_party/opus/src":
324     "/trunk/deps/third_party/opus@165487",
328 deps_os = {
329   "win": {
330     "src/chrome/tools/test/reference_build/chrome_win":
331       "/trunk/deps/reference_builds/chrome_win@137747",
333     "src/third_party/cygwin":
334       "/trunk/deps/third_party/cygwin@133786",
336     "src/third_party/python_26":
337       "/trunk/tools/third_party/python_26@89111",
339     "src/third_party/psyco_win32":
340       "/trunk/deps/third_party/psyco_win32@79861",
342     "src/third_party/bison":
343       "/trunk/deps/third_party/bison@147303",
345     "src/third_party/gperf":
346       "/trunk/deps/third_party/gperf@147304",
348     "src/third_party/perl":
349       "/trunk/deps/third_party/perl@147900",
351     "src/third_party/lighttpd":
352       "/trunk/deps/third_party/lighttpd@33727",
354     # Chrome Frame related deps
355     "src/third_party/xulrunner-sdk":
356       "/trunk/deps/third_party/xulrunner-sdk@119756",
357     "src/chrome_frame/tools/test/reference_build/chrome_win":
358       "/trunk/deps/reference_builds/chrome_win@89574",
360     # Parses Windows PE/COFF executable format.
361     "src/third_party/pefile":
362       (Var("googlecode_url") % "pefile") + "/trunk@63",
364     # NSS, for SSLClientSocketNSS.
365     "src/third_party/nss":
366       "/trunk/deps/third_party/nss@" + Var("nss_revision"),
368     "src/third_party/swig/win":
369       "/trunk/deps/third_party/swig/win@" + Var("swig_revision"),
371     # GNU binutils assembler for x86-32.
372     "src/third_party/gnu_binutils":
373       (Var("nacl_trunk") + "/deps/third_party/gnu_binutils@" +
374        Var("nacl_tools_revision")),
375     # GNU binutils assembler for x86-64.
376     "src/third_party/mingw-w64/mingw/bin":
377       (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" +
378        Var("nacl_tools_revision")),
380     # Dependencies used by libjpeg-turbo
381     "src/third_party/yasm/binaries":
382       "/trunk/deps/third_party/yasm/binaries@154708",
384     # Binary level profile guided optimizations. This points to the
385     # latest release binaries for the toolchain.
386     "src/third_party/syzygy/binaries":
387       (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1083",
389     # Binaries for nacl sdk.
390     "src/third_party/nacl_sdk_binaries":
391       "/trunk/deps/third_party/nacl_sdk_binaries@111576",
392   },
393   "ios": {
394     "src/third_party/GTM":
395       (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" +
396       Var("gtm_revision"),
398     "src/third_party/nss":
399       "/trunk/deps/third_party/nss@" + Var("nss_revision"),
401     # class-dump utility to generate header files for undocumented SDKs
402     "src/testing/iossim/third_party/class-dump":
403       "/trunk/deps/third_party/class-dump@147231",
405     # Pull only the headers from WebKit.
406     "src/third_party/WebKit/Source/WebKit/chromium/public":
407       Var("webkit_trunk") + "/Source/WebKit/chromium/public@" +
408       Var("webkit_revision"),
409     "src/third_party/WebKit/Source/Platform/chromium/public":
410       Var("webkit_trunk") + "/Source/Platform/chromium/public@" +
411       Var("webkit_revision"),
413     # Code that's not needed due to not building everything (especially WebKit).
414     "src/build/util/support": None,
415     "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": None,
416     "src/content/test/data/layout_tests/LayoutTests/fast/events": None,
417     "src/content/test/data/layout_tests/LayoutTests/fast/filesystem/resources": None,
418     "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": None,
419     "src/content/test/data/layout_tests/LayoutTests/fast/workers": None,
420     "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache": None,
421     "src/content/test/data/layout_tests/LayoutTests/http/tests/resources": None,
422     "src/content/test/data/layout_tests/LayoutTests/http/tests/websocket/tests": None,
423     "src/content/test/data/layout_tests/LayoutTests/http/tests/workers": None,
424     "src/content/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": None,
425     "src/content/test/data/layout_tests/LayoutTests/media": None,
426     "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/events": None,
427     "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/workers": None,
428     "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/http/tests/workers": None,
429     "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/domstorage": None,
430     "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/events": None,
431     "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers": None,
432     "src/content/test/data/layout_tests/LayoutTests/storage/indexeddb": None,
433     "src/content/test/data/layout_tests/LayoutTests/storage/domstorage": None,
434     "src/chrome/test/data/perf/canvas_bench": None,
435     "src/chrome/test/data/perf/frame_rate/content": None,
436     "src/native_client": None,
437     "src/native_client/src/third_party/ppapi": None,
438     "src/sandbox/linux/seccomp-legacy": None,
439     "src/third_party/angle": None,
440     "src/third_party/bidichecker": None,
441     "src/third_party/webgl_conformance": None,
442     "src/third_party/ffmpeg": None,
443     "src/third_party/hunspell_dictionaries": None,
444     "src/third_party/hunspell": None,
445     "src/third_party/leveldatabase/src": None,
446     "src/third_party/libexif/sources": None,
447     "src/third_party/libjingle/source": None,
448     "src/third_party/libjpeg_turbo": None,
449     "src/third_party/libphonenumber/src/phonenumbers": None,
450     "src/third_party/libphonenumber/src/test": None,
451     "src/third_party/libphonenumber/src/resources": None,
452     "src/third_party/jsoncpp/source/include": None,
453     "src/third_party/jsoncpp/source/src/lib_json": None,
454     "src/third_party/libsrtp": None,
455     "src/third_party/libvpx": None,
456     "src/third_party/libyuv": None,
457     "src/third_party/mozc/session": None,
458     "src/third_party/mozc/chrome/chromeos/renderer": None,
459     "src/third_party/ots": None,
460     "src/third_party/pylib": None,
461     "src/third_party/pymox/src": None,
462     "src/third_party/safe_browsing/testing": None,
463     "src/third_party/scons-2.0.1": None,
464     "src/third_party/sfntly/cpp/src": None,
465     "src/third_party/smhasher/src": None,
466     "src/third_party/snappy/src": None,
467     "src/third_party/swig/Lib": None,
468     "src/third_party/undoview": None,
469     "src/third_party/v8-i18n": None,
470     "src/third_party/webdriver/pylib": None,
471     "src/third_party/webpagereplay": None,
472     "src/third_party/webrtc": None,
473     "src/third_party/WebKit": None,
474     "src/third_party/WebKit/LayoutTests": None,
475     "src/third_party/WebKit/Source": None,
476     "src/third_party/WebKit/Tools/DumpRenderTree": None,
477     "src/third_party/WebKit/Tools/Scripts": None,
478     "src/third_party/WebKit/Tools/TestWebKitAPI": None,
479     "src/third_party/yasm/source/patched-yasm": None,
480     "src/tools/page_cycler/acid3": None,
481     "src/v8": None,
482   },
483   "mac": {
484     "src/chrome/tools/test/reference_build/chrome_mac":
485       "/trunk/deps/reference_builds/chrome_mac@137727",
487     "src/third_party/GTM":
488       (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" +
489       Var("gtm_revision"),
490     "src/third_party/pdfsqueeze":
491       (Var("googlecode_url") % "pdfsqueeze") + "/trunk@5",
492     "src/third_party/lighttpd":
493       "/trunk/deps/third_party/lighttpd@33737",
495     "src/third_party/swig/mac":
496       "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"),
498     # NSS, for SSLClientSocketNSS.
499     "src/third_party/nss":
500       "/trunk/deps/third_party/nss@" + Var("nss_revision"),
502     "src/chrome/installer/mac/third_party/xz/xz":
503       "/trunk/deps/third_party/xz@87706",
504   },
505   "unix": {
506     # Linux, really.
507     "src/chrome/tools/test/reference_build/chrome_linux":
508       "/trunk/deps/reference_builds/chrome_linux@137712",
510     "src/third_party/xdg-utils":
511       "/trunk/deps/third_party/xdg-utils@149334",
513     "src/third_party/swig/linux":
514       "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"),
516     "src/third_party/lss":
517       ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" +
518        Var("lss_revision")),
520     "src/third_party/openssl":
521       "/trunk/deps/third_party/openssl@157142",
523     "src/third_party/WebKit/Tools/gdb":
524       Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"),
526     "src/third_party/gold":
527       "/trunk/deps/third_party/gold@149858",
529     "src/third_party/libmtp":
530       "/trunk/deps/third_party/libmtp@167836",
532     # Used on Linux only. CrOS already has a copy.
533     "src/third_party/mtpd/source":
534       Var("chromiumos_git") + "/platform/mtpd.git" +
535       "@47f8e78eefbeeda76ec43cac3d2bdc54a010115c",
537     # Used on Linux only. CrOS already has a copy.
538     "src/third_party/cros_dbus_cplusplus/source":
539       Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" +
540       "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900",
542     # For Linux and Chromium OS.
543     "src/third_party/cros_system_api":
544       Var("chromiumos_git") + "/platform/system_api.git" +
545       "@5c93f10ee61fa916499b523ad3a1e489e5ad4ded",
546   },
547   "android": {
548     "src/third_party/freetype":
549       Var("chromium_git") + "/chromium/src/third_party/freetype.git" +
550       "@96551feab72aac26836e9aaf4fae0962d39d5ab0",
552     "src/third_party/aosp":
553       "/trunk/deps/third_party/aosp@148330",
555     "src/third_party/android_tools":
556       Var("chromium_git") + "/android_tools.git" +
557       "@e2124aef9cb91dac3a597d353cd217ed328221e5",
559     "src/third_party/findbugs":
560       "/trunk/deps/third_party/findbugs@163586",
561   },
565 include_rules = [
566   # Everybody can use some things.
567   "+base",
568   "+build",
569   "+googleurl",
570   "+ipc",
572   # For now, we allow ICU to be included by specifying "unicode/...", although
573   # this should probably change.
574   "+unicode",
575   "+testing",
579 # checkdeps.py shouldn't check include paths for files in these dirs:
580 skip_child_includes = [
581   "breakpad",
582   "chrome_frame",
583   "delegate_execute",
584   "metro_driver",
585   "native_client_sdk",
586   "o3d",
587   "pdf",
588   "sdch",
589   "skia",
590   "testing",
591   "third_party",
592   "v8",
593   "win8",
597 hooks = [
598   {
599     # This downloads binaries for Native Client's newlib toolchain.
600     # Done in lieu of building the toolchain from scratch as it can take
601     # anywhere from 30 minutes to 4 hours depending on platform to build.
602     "pattern": ".",
603     "action": [
604         "python", "src/build/download_nacl_toolchains.py",
605          "--no-arm-trusted",
606          "--save-downloads-dir",
607              "src/native_client_sdk/src/build_tools/toolchain_archives",
608          "--keep",
609     ],
610   },
611   {
612     # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
613     # zero seconds to run. If something changed, it downloads a prebuilt clang,
614     # which takes ~20s, but clang speeds up builds by more than 20s.
615     "pattern": ".",
616     "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
617   },
618   {
619     # Update the cygwin mount on Windows.
620     "pattern": ".",
621     "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"],
622   },
623   {
624     # Update LASTCHANGE. This is also run by export_tarball.py in
625     # src/tools/export_tarball - please keep them in sync.
626     "pattern": ".",
627     "action": ["python", "src/build/util/lastchange.py",
628                "-o", "src/build/util/LASTCHANGE"],
629   },
630   {
631     # A change to a .gyp, .gypi, or to GYP itself should run the generator.
632     "pattern": ".",
633     "action": ["python", "src/build/gyp_chromium"],
634   },
635   {
636     # Check for landmines (reasons to clobber the build).
637     "pattern": ".",
638     "action": ["python", "src/build/landmines.py"],
639   },