OLD | NEW |
1 vars = { | 1 vars = { |
2 "webkit_trunk": | 2 "webkit_trunk": |
3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
4 "webkit_revision": "46766", | 4 "webkit_revision": "46766", |
5 } | 5 } |
6 | 6 |
7 | 7 |
8 deps = { | 8 deps = { |
9 "src/breakpad/src": | 9 "src/breakpad/src": |
10 "http://google-breakpad.googlecode.com/svn/trunk/src@346", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@346", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 "src/third_party/WebKit/WebCore": | 51 "src/third_party/WebKit/WebCore": |
52 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), | 52 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), |
53 | 53 |
54 "src/third_party/tcmalloc/tcmalloc": | 54 "src/third_party/tcmalloc/tcmalloc": |
55 "http://google-perftools.googlecode.com/svn/trunk@74", | 55 "http://google-perftools.googlecode.com/svn/trunk@74", |
56 | 56 |
57 "src/tools/page_cycler/acid3": | 57 "src/tools/page_cycler/acid3": |
58 "/trunk/deps/page_cycler/acid3@19546", | 58 "/trunk/deps/page_cycler/acid3@19546", |
59 | 59 |
60 # TODO(jianli): Remove this once we do not need to run worker's layout tests | 60 # We run these layout tests as UI tests. Since many of the buildbots that |
61 # in ui test. | 61 # run layout tests do NOT have access to the LayoutTest directory, we need |
62 "src/chrome/test/data/workers/LayoutTests/fast/events": | 62 # to map them here. In practice, these do not take up much space. |
63 Var("webkit_trunk") + "/LayoutTests/fast/events@" + Var("webkit_revision"), | 63 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
64 "src/chrome/test/data/workers/LayoutTests/fast/workers": | 64 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
65 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), | 65 Var("webkit_revision"), |
66 "src/chrome/test/data/workers/LayoutTests/http/tests/resources": | 66 "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": |
67 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_rev
ision"), | 67 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + |
68 "src/chrome/test/data/workers/LayoutTests/http/tests/workers": | 68 Var("webkit_revision"), |
69 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revis
ion"), | 69 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": |
70 "src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest": | 70 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + |
71 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + Var("webki
t_revision"), | 71 Var("webkit_revision"), |
| 72 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": |
| 73 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + |
| 74 Var("webkit_revision"), |
| 75 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": |
| 76 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + |
| 77 Var("webkit_revision"), |
| 78 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": |
| 79 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + |
| 80 Var("webkit_revision"), |
72 } | 81 } |
73 | 82 |
74 | 83 |
75 deps_os = { | 84 deps_os = { |
76 "win": { | 85 "win": { |
77 "src/third_party/cygwin": | 86 "src/third_party/cygwin": |
78 "/trunk/deps/third_party/cygwin@11984", | 87 "/trunk/deps/third_party/cygwin@11984", |
79 | 88 |
80 "src/third_party/python_24": | 89 "src/third_party/python_24": |
81 "/trunk/deps/third_party/python_24@19441", | 90 "/trunk/deps/third_party/python_24@19441", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 ] | 138 ] |
130 | 139 |
131 | 140 |
132 hooks = [ | 141 hooks = [ |
133 { | 142 { |
134 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 143 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
135 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 144 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
136 "action": ["python", "src/tools/gyp/gyp_chromium"], | 145 "action": ["python", "src/tools/gyp/gyp_chromium"], |
137 }, | 146 }, |
138 ] | 147 ] |
OLD | NEW |