OLD | NEW |
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 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. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
7 "webkit_revision": "81648", | 7 "webkit_revision": "81648", |
8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
10 "nacl_revision": "4559", | 10 "nacl_revision": "4559", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 Var("webkit_revision"), | 157 Var("webkit_revision"), |
158 "src/chrome/test/data/layout_tests/LayoutTests/media": | 158 "src/chrome/test/data/layout_tests/LayoutTests/media": |
159 Var("webkit_trunk") + "/LayoutTests/media@" + | 159 Var("webkit_trunk") + "/LayoutTests/media@" + |
160 Var("webkit_revision"), | 160 Var("webkit_revision"), |
161 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": | 161 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": |
162 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + | 162 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + |
163 Var("webkit_revision"), | 163 Var("webkit_revision"), |
164 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": | 164 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": |
165 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + | 165 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + |
166 Var("webkit_revision"), | 166 Var("webkit_revision"), |
| 167 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem": |
| 168 Var("webkit_trunk") + "/LayoutTests/http/tests/filesystem@" + |
| 169 Var("webkit_revision"), |
167 | 170 |
168 "src/third_party/swig/Lib": | 171 "src/third_party/swig/Lib": |
169 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 172 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
170 | 173 |
171 # WebDriver keeps client and test code separate, and merges when the | 174 # WebDriver keeps client and test code separate, and merges when the |
172 # python egg is installed. We run tests directly from src, so import | 175 # python egg is installed. We run tests directly from src, so import |
173 # the code into the structure expected by the tests. | 176 # the code into the structure expected by the tests. |
174 "src/third_party/webdriver/python/selenium": | 177 "src/third_party/webdriver/python/selenium": |
175 "http://selenium.googlecode.com/svn/trunk/py/selenium@11696", | 178 "http://selenium.googlecode.com/svn/trunk/py/selenium@11696", |
176 "src/third_party/webdriver/python/selenium/test": | 179 "src/third_party/webdriver/python/selenium/test": |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 ] | 334 ] |
332 | 335 |
333 | 336 |
334 hooks = [ | 337 hooks = [ |
335 { | 338 { |
336 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 339 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
337 "pattern": ".", | 340 "pattern": ".", |
338 "action": ["python", "src/build/gyp_chromium"], | 341 "action": ["python", "src/build/gyp_chromium"], |
339 }, | 342 }, |
340 ] | 343 ] |
OLD | NEW |