editing/selection/regional-indicators.html timing out on Linux
[chromium-blink-merge.git] / DEPS
blob5abb9156070d99e529d896da0f7e3a0757b606dd
1 vars = {
2   # Use this googlecode_url variable only if there is an internal mirror for it.
3   # If you do not know, use the full path while defining your new deps entry.
4   "googlecode_url": "http://%s.googlecode.com/svn",
5   "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6   "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7   "webkit_revision": "93643",
8   "chromium_git": "http://git.chromium.org/git",
9   "swig_revision": "69281",
10   "nacl_revision": "6499",
11   # After changing nacl_revision, run 'glient sync' and check native_client/DEPS
12   # to update other nacl_*_revision's.
13   # TODO(brettw) We should use the "From" syntax to avoid hardcoding the
14   # revisions here, but it makes checkdeps confused. We should fix checkdeps.
15   "nacl_chrome_ppapi_revision": "97134", # native_client/DEPS: chrome_ppapi_rev 
16   "nacl_tools_revision": "5360",  # native_client/DEPS: tools_rev
18   # These hashes need to be updated when nacl_toolchain_revision is changed.
19   # After changing nacl_toolchain_revision, run 'gclient runhooks' to get the
20   # new values.
21   "nacl_toolchain_mac_x86_newlib_hash":
22       "1b0855435c03c435a011c6105a509624b2a4edaa",
23   "nacl_toolchain_win_x86_newlib_hash":
24       "5038a47b5a9a49acdc36cbe311aec7bce575c164",
25   "nacl_toolchain_linux_x86_newlib_hash":
26       "01e245dc6dca16bea5cf840dbc77e3aa138f234f",
27   "nacl_toolchain_revision": "6494",
29   "libjingle_revision": "77",
30   "libvpx_revision": "97420",
31   "ffmpeg_revision": "97428",
32   "sfntly_revision": "54",
33   "skia_revision": "2142",
34   "v8_revision": "8982",
35   "webrtc_revision": "242",
37   # Note: On most bots, clang is not checked out via DEPS but by
38   # tools/clang/scripts/update.sh. The script reads this line here.
39   "clang_revision": "138187",
42 deps = {
43   "src/breakpad/src":
44     (Var("googlecode_url") % "google-breakpad") + "/trunk/src@825",
46   "src/build/util/support":
47     "/trunk/deps/support@20411",
49   "src/googleurl":
50     (Var("googlecode_url") % "google-url") + "/trunk@159",
52   "src/seccompsandbox":
53     (Var("googlecode_url") % "seccompsandbox") + "/trunk@168",
55   "src/sdch/open-vcdiff":
56     (Var("googlecode_url") % "open-vcdiff") + "/trunk@28",
58   "src/testing/gtest":
59     (Var("googlecode_url") % "googletest") + "/trunk@560",
61   "src/testing/gmock":
62     (Var("googlecode_url") % "googlemock") + "/trunk@374",
64   "src/third_party/angle":
65     (Var("googlecode_url") % "angleproject") + "/trunk@731",
67   # Note that this is *not* where we check out WebKit -- this just
68   # puts some extra files into place for the real WebKit checkout to
69   # happen.  See lines mentioning "webkit_revision" for the real
70   # WebKit checkout.
71   "src/third_party/WebKit":
72     "/trunk/deps/third_party/WebKit@76115",
74   "src/third_party/icu":
75     "/trunk/deps/third_party/icu46@93875",
77   "src/third_party/hunspell":
78    "/trunk/deps/third_party/hunspell@96723",
80   "src/third_party/hunspell_dictionaries":
81     "/trunk/deps/third_party/hunspell_dictionaries@79099",
83   "src/third_party/safe_browsing/testing":
84     (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@106",
86   "src/third_party/cacheinvalidation/files/src/google":
87     (Var("googlecode_url") % "google-cache-invalidation-api") +
88     "/trunk/src/google@135",
90   "src/third_party/leveldatabase/src":
91     (Var("googlecode_url") % "leveldb") + "/trunk@47",
93   "src/third_party/snappy/src":
94     (Var("googlecode_url") % "snappy") + "/trunk@37",
96   "src/tools/gyp":
97     (Var("googlecode_url") % "gyp") + "/trunk@1006",
99   "src/v8":
100     (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"),
102   "src/native_client":
103     Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"),
105   "src/native_client/src/third_party/ppapi":
106     # TODO(brettw) enable the From() line instead when checkdeps is fixed.
107     #From("src/native_client", "native_client/src/third_party/ppapi"),
108     "/trunk/src/ppapi@" + Var("nacl_chrome_ppapi_revision"),
110   "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin":
111     Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" +
112     Var("nacl_revision"),
114   "src/third_party/sfntly/src/sfntly":
115     (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src/sfntly@" +
116     Var("sfntly_revision"),
118   "src/third_party/skia/gpu":
119     (Var("googlecode_url") % "skia") + "/trunk/gpu@" + Var("skia_revision"),
121   "src/third_party/skia/src":
122     (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"),
124   "src/third_party/skia/include":
125     (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"),
127   "src/third_party/skia/third_party/glu":
128     (Var("googlecode_url") % "skia") + "/trunk/third_party/glu@" + Var("skia_revision"),
130   "src/third_party/WebKit/LayoutTests":
131     Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"),
133   "src/third_party/WebKit/Source":
134     Var("webkit_trunk") + "/Source@" + Var("webkit_revision"),
136   "src/third_party/WebKit/Tools/DumpRenderTree":
137     Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"),
139   "src/third_party/WebKit/Tools/Scripts":
140     Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"),
142   "src/third_party/ots":
143     (Var("googlecode_url") % "ots") + "/trunk@69",
145   "src/tools/page_cycler/acid3":
146     "/trunk/deps/page_cycler/acid3@19546",
148   "src/chrome/test/data/perf/frame_rate/content":
149     "/trunk/deps/frame_rate/content@93671",
151   "src/third_party/bidichecker":
152     (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4",
154   "src/third_party/v8-i18n":
155     (Var("googlecode_url") % "v8-i18n") + "/trunk@4",
157   "src/third_party/webgl_conformance":
158     "/trunk/deps/third_party/webgl/sdk/tests@93490",
160   # We run these layout tests as UI tests. Since many of the buildbots that
161   # run layout tests do NOT have access to the LayoutTest directory, we need
162   # to map them here. In practice, these do not take up much space.
163   "src/chrome/test/data/layout_tests/LayoutTests/fast/events":
164     Var("webkit_trunk") + "/LayoutTests/fast/events@" +
165     Var("webkit_revision"),
166   "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources":
167     Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" +
168     Var("webkit_revision"),
169   "src/chrome/test/data/layout_tests/LayoutTests/fast/workers":
170     Var("webkit_trunk") + "/LayoutTests/fast/workers@" +
171     Var("webkit_revision"),
172   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources":
173     Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" +
174     Var("webkit_revision"),
175   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers":
176     Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" +
177     Var("webkit_revision"),
178   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest":
179     Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" +
180     Var("webkit_revision"),
181   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/websocket/tests":
182     Var("webkit_trunk") + "/LayoutTests/http/tests/websocket/tests@" +
183     Var("webkit_revision"),
184   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers":
185     Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/workers@" +
186     Var("webkit_revision"),
187   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-cg-mac/fast/events":
188     Var("webkit_trunk") + "/LayoutTests/platform/chromium-cg-mac/fast/events@" +
189     Var("webkit_revision"),
190   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-cg-mac/http/tests/workers":
191     Var("webkit_trunk") + "/LayoutTests/platform/chromium-cg-mac/http/tests/workers@" +
192     Var("webkit_revision"),
193   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-cg-mac/storage/domstorage":
194     Var("webkit_trunk") + "/LayoutTests/platform/chromium-cg-mac/storage/domstorage@" +
195     Var("webkit_revision"),
196   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/events":
197     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/events@" +
198     Var("webkit_revision"),
199   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/workers":
200     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/workers@" +
201     Var("webkit_revision"),
202   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/appcache":
203     Var("webkit_trunk") + "/LayoutTests/http/tests/appcache@" +
204     Var("webkit_revision"),
205   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/tests/workers":
206     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers@" +
207     Var("webkit_revision"),
208   "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/domstorage":
209     Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage@" +
210     Var("webkit_revision"),
211   "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage":
212     Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" +
213     Var("webkit_revision"),
214   "src/chrome/test/data/layout_tests/LayoutTests/media":
215     Var("webkit_trunk") + "/LayoutTests/media@" +
216     Var("webkit_revision"),
217   "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers":
218     Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" +
219     Var("webkit_revision"),
220   "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources":
221     Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" +
222     Var("webkit_revision"),
223   "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem":
224     Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" +
225     Var("webkit_revision"),
227   "src/third_party/swig/Lib":
228     "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"),
230   # WebDriver keeps client and test code separate, and merges when the
231   # python egg is installed. We run tests directly from src, so import
232   # the code into the structure expected by the tests.
233   "src/third_party/webdriver/python/selenium":
234     "http://selenium.googlecode.com/svn/trunk/py/selenium@13487",
235   "src/third_party/webdriver/python/selenium/test":
236     "http://selenium.googlecode.com/svn/trunk/py/test@13487",
238   "src/third_party/libvpx":
239     "/trunk/deps/third_party/libvpx@" +
240     Var("libvpx_revision"),
242   "src/third_party/ffmpeg":
243     "/trunk/deps/third_party/ffmpeg/source@" +
244     Var("ffmpeg_revision"),
246   "src/third_party/libjingle/source":
247     (Var("googlecode_url") % "libjingle") + "/trunk@" +
248     Var("libjingle_revision"),
250   "src/third_party/speex":
251     "/trunk/deps/third_party/speex@83190",
253   "src/third_party/yasm/source/patched-yasm":
254     "/trunk/deps/third_party/yasm/patched-yasm@73761",
256   "src/third_party/libjpeg_turbo":
257     "/trunk/deps/third_party/libjpeg_turbo@95800",
259   "src/third_party/flac":
260     "/trunk/deps/third_party/flac@96404",
262   "src/third_party/pyftpdlib/src":
263     (Var("googlecode_url") % "pyftpdlib") + "/trunk@888",
265   # Needed to support nacl browser test jig.
266   "src/third_party/pylib":
267     # TODO(brettw) enable the From() line instead when checkdeps is fixed.
268     #From("src/native_client", "native_client/src/third_party/pylib"),
269     Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"),
270   "src/third_party/scons-2.0.1":
271     Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
272         Var("nacl_tools_revision"),
274   "src/third_party/webrtc":
275     (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"),
279 deps_os = {
280   "win": {
281     "src/chrome/tools/test/reference_build/chrome_win":
282       "/trunk/deps/reference_builds/chrome_win@89574",
284     "src/third_party/cygwin":
285       "/trunk/deps/third_party/cygwin@66844",
287     "src/third_party/python_26":
288       "/trunk/tools/third_party/python_26@89111",
290     "src/third_party/psyco_win32":
291       "/trunk/deps/third_party/psyco_win32@79861",
293     "src/third_party/lighttpd":
294       "/trunk/deps/third_party/lighttpd@33727",
296     "src/third_party/ffmpeg/binaries/chromium/win/ia32":
297       "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"),
299     # Chrome Frame related deps
300     "src/third_party/xulrunner-sdk":
301       "/trunk/deps/third_party/xulrunner-sdk@71609",
302     "src/chrome_frame/tools/test/reference_build/chrome_win":
303       "/trunk/deps/reference_builds/chrome_win@89574",
305     # Parses Windows PE/COFF executable format.
306     "src/third_party/pefile":
307       (Var("googlecode_url") % "pefile") + "/trunk@63",
309     # NSS, for SSLClientSocketNSS.
310     "src/third_party/nss":
311       "/trunk/deps/third_party/nss@94921",
313     "src/third_party/swig/win":
314       "/trunk/deps/third_party/swig/win@" + Var("swig_revision"),
316     "src/third_party/mingw-w64/mingw/bin":
317       (Var("nacl_trunk") + "/src/third_party/mingw-w64/mingw/bin@" +
318        Var("nacl_tools_revision")),
320     "src/rlz":
321       (Var("googlecode_url") % "rlz") + "/trunk@46",
323     # Dependencies used by libjpeg-turbo
324     "src/third_party/yasm/binaries":
325       "/trunk/deps/third_party/yasm/binaries@74228",
327     # Binary level profile guided optimizations.  This points to the
328     # latest release binaries for the toolchain.
329     "src/third_party/syzygy/binaries":
330       (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@398",
331   },
332   "mac": {
333     "src/chrome/tools/test/reference_build/chrome_mac":
334       "/trunk/deps/reference_builds/chrome_mac@89574",
336     "src/third_party/GTM":
337       (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@459",
338     "src/third_party/pdfsqueeze":
339       (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4",
340     "src/third_party/lighttpd":
341       "/trunk/deps/third_party/lighttpd@33737",
343     "src/third_party/WebKit/WebKitLibraries":
344       Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"),
346     "src/third_party/swig/mac":
347       "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"),
349     # NSS, for SSLClientSocketNSS.
350     "src/third_party/nss":
351       "/trunk/deps/third_party/nss@94921",
353     "src/chrome/installer/mac/third_party/xz/xz":
354       "/trunk/deps/third_party/xz@87706",
355   },
356   "unix": {
357     # Linux, really.
358     "src/chrome/tools/test/reference_build/chrome_linux":
359       "/trunk/deps/reference_builds/chrome_linux@89574",
361     "src/third_party/xdg-utils":
362       "/trunk/deps/third_party/xdg-utils@93299",
364     "src/third_party/swig/linux":
365       "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"),
367     "src/third_party/lss":
368       (Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3",
370     "src/third_party/openssl":
371       "/trunk/deps/third_party/openssl@94299",
373     "src/third_party/WebKit/Tools/gdb":
374       Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"),
375   },
379 include_rules = [
380   # Everybody can use some things.
381   "+base",
382   "+build",
383   "+ipc",
385   # For now, we allow ICU to be included by specifying "unicode/...", although
386   # this should probably change.
387   "+unicode",
388   "+testing",
392 # checkdeps.py shouldn't check include paths for files in these dirs:
393 skip_child_includes = [
394   "breakpad",
395   "chrome_frame",
396   "native_client",
397   "o3d",
398   "pdf",
399   "sdch",
400   "skia",
401   "testing",
402   "third_party",
403   "v8",
407 hooks = [
408   {
409     # This downloads binaries for Native Client's newlib toolchain.
410     # Done in lieu of building the toolchain from scratch as it can take
411     # anywhere from 30 minutes to 4 hours depending on platform to build.
412     "pattern": ".",
413     "action": [
414         "python", "src/build/download_nacl_toolchains.py",
415          "--x86-version", Var("nacl_toolchain_revision"),
416          "--nacl-newlib-only",
417          "--file-hash", "mac_x86_newlib",
418              Var("nacl_toolchain_mac_x86_newlib_hash"),
419          "--file-hash", "win_x86_newlib",
420              Var("nacl_toolchain_win_x86_newlib_hash"),
421          "--file-hash", "linux_x86_newlib",
422              Var("nacl_toolchain_linux_x86_newlib_hash"),
423     ],
424   },
425   {
426     # A change to a .gyp, .gypi, or to GYP itself should run the generator.
427     "pattern": ".",
428     "action": ["python", "src/build/gyp_chromium"],
429   },