blob: 621b6016abf82be6dd37fd5bca3965d6a8578e61 [file] [log] [blame]
[email protected]5f129de2009-02-24 23:22:041vars = {
2 "webkit_trunk":
3 "http://svn.webkit.org/repository/webkit/trunk",
4 "webkit_revision": "41181",
5}
6
7
8deps = {
9 "src/breakpad/src":
10 "http://google-breakpad.googlecode.com/svn/trunk/src@285",
11
12 "src/googleurl":
13 "http://google-url.googlecode.com/svn/trunk@96",
14
15 "src/sdch/open-vcdiff":
16 "http://open-vcdiff.googlecode.com/svn/trunk@22",
17
18 "src/testing/gtest":
19 "http://googletest.googlecode.com/svn/trunk@167",
20
21 "src/third_party/WebKit":
22 "/trunk/deps/third_party/WebKit@10283",
23
24 "src/third_party/icu38":
25 "/trunk/deps/third_party/icu38@10304",
26
27 # TODO(mark): Remove once this has moved into depot_tools.
28 "src/tools/gyp":
29 "http://gyp.googlecode.com/svn/trunk",
30
31 "src/v8":
32 "http://v8.googlecode.com/svn/trunk@1266",
33
34 "src/webkit/data/layout_tests/LayoutTests":
35 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"),
36
37 "src/third_party/WebKit/WebKit/mac":
38 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"),
39
40 "src/third_party/WebKit/WebKitLibraries":
41 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"),
42}
43
44
45deps_os = {
46 "win": {
47 "src/third_party/cygwin":
48 "/trunk/deps/third_party/cygwin@3248",
49
50 "src/third_party/python_24":
51 "/trunk/deps/third_party/python_24@7444",
52
53 "src/third_party/svn":
54 "/trunk/deps/third_party/svn@3230",
55 },
56 "mac": {
57 "src/third_party/GTM":
58 "http://google-toolbox-for-mac.googlecode.com/svn/trunk/@77",
59 "src/third_party/pdfsqueeze":
60 "http://pdfsqueeze.googlecode.com/svn/trunk/@2",
61 },
62}
63
64
65include_rules = [
66 # Everybody can use some things.
67 "+base",
68 "+build",
69
70 # For now, we allow ICU to be included by specifying "unicode/...", although
71 # this should probably change.
72 "+unicode",
73 "+testing",
74
75 # Allow anybody to include files from the "public" Skia directory in the
76 # webkit port. This is shared between the webkit port and Chrome.
77 "+webkit/port/platform/graphics/skia/public",
78]
79
80
81# checkdeps.py shouldn't check include paths for files in these dirs:
82skip_child_includes = [
83 "breakpad",
84 "gears",
85 "sdch",
86 "skia",
87 "testing",
88 "third_party",
89 "v8",
90]