1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
vars = {
"webkit_trunk":
"http://svn.webkit.org/repository/webkit/trunk",
"webkit_revision": "45664",
}
deps = {
"src/breakpad/src":
"http://google-breakpad.googlecode.com/svn/trunk/src@346",
"src/build/util/support":
"/trunk/deps/support@19914",
"src/googleurl":
"http://google-url.googlecode.com/svn/trunk@107",
"src/sdch/open-vcdiff":
"http://open-vcdiff.googlecode.com/svn/trunk@26",
"src/testing/gtest":
"http://googletest.googlecode.com/svn/trunk@267",
"src/third_party/WebKit":
"/trunk/deps/third_party/WebKit@15773",
"src/third_party/icu38":
"/trunk/deps/third_party/icu38@20192",
# TODO(mark): Remove once this has moved into depot_tools.
"src/tools/gyp":
"http://gyp.googlecode.com/svn/trunk@532",
"src/v8":
"http://v8.googlecode.com/svn/trunk@2412",
"src/third_party/skia":
"http://skia.googlecode.com/svn/trunk@250",
"src/webkit/data/layout_tests/LayoutTests":
Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"),
"src/third_party/WebKit/JavaScriptCore":
Var("webkit_trunk") + "/JavaScriptCore@" + Var("webkit_revision"),
"src/third_party/WebKit/WebCore":
Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"),
"src/third_party/WebKit/WebKitLibraries":
Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"),
"src/third_party/tcmalloc/tcmalloc":
"http://google-perftools.googlecode.com/svn/trunk@74",
"src/tools/page_cycler/acid3":
"/trunk/deps/page_cycler/acid3@19546",
# TODO(jianli): Remove this once we do not need to run worker's layout tests
# in ui test.
"src/chrome/test/data/workers/LayoutTests/fast/workers":
Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"),
"src/chrome/test/data/workers/LayoutTests/http/tests/resources":
Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_revision"),
"src/chrome/test/data/workers/LayoutTests/http/tests/workers":
Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revision"),
"src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest":
Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + Var("webkit_revision"),
}
deps_os = {
"win": {
"src/third_party/cygwin":
"/trunk/deps/third_party/cygwin@11984",
"src/third_party/python_24":
"/trunk/deps/third_party/python_24@19441",
},
"mac": {
"src/third_party/GTM":
"http://google-toolbox-for-mac.googlecode.com/svn/trunk@119",
"src/third_party/pdfsqueeze":
"http://pdfsqueeze.googlecode.com/svn/trunk@2",
"src/third_party/WebKit/WebKit/mac":
Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"),
},
}
include_rules = [
# Everybody can use some things.
"+base",
"+build",
# For now, we allow ICU to be included by specifying "unicode/...", although
# this should probably change.
"+unicode",
"+testing",
# Allow anybody to include files from the "public" Skia directory in the
# webkit port. This is shared between the webkit port and Chrome.
"+webkit/port/platform/graphics/skia/public",
]
# checkdeps.py shouldn't check include paths for files in these dirs:
skip_child_includes = [
"breakpad",
"gears",
"o3d",
"sdch",
"skia",
"testing",
"third_party",
"v8",
]
hooks = [
{
# A change to a .gyp, .gypi, or to GYP itself shound run the generator.
"pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]",
"action": ["python", "src/tools/gyp/gyp_dogfood", "src/build/all.gyp"],
},
]
|