| 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": "74534", | 7 "webkit_revision": "74534", |
| 8 "skia_revision": "636", | 8 "skia_revision": "636", |
| 9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "src/third_party/WebKit/WebKit/chromium": | 84 "src/third_party/WebKit/WebKit/chromium": |
| 85 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), | 85 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), |
| 86 | 86 |
| 87 "src/third_party/WebKit/Tools/DumpRenderTree": | 87 "src/third_party/WebKit/Tools/DumpRenderTree": |
| 88 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), | 88 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), |
| 89 | 89 |
| 90 "src/third_party/WebKit/Tools/Scripts": | 90 "src/third_party/WebKit/Tools/Scripts": |
| 91 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), | 91 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), |
| 92 | 92 |
| 93 "src/third_party/ots": | 93 "src/third_party/ots": |
| 94 (Var("googlecode_url") % "ots") + "/trunk@43", | 94 (Var("googlecode_url") % "ots") + "/trunk@44", |
| 95 | 95 |
| 96 "src/tools/page_cycler/acid3": | 96 "src/tools/page_cycler/acid3": |
| 97 "/trunk/deps/page_cycler/acid3@19546", | 97 "/trunk/deps/page_cycler/acid3@19546", |
| 98 | 98 |
| 99 # We run these layout tests as UI tests. Since many of the buildbots that | 99 # We run these layout tests as UI tests. Since many of the buildbots that |
| 100 # run layout tests do NOT have access to the LayoutTest directory, we need | 100 # run layout tests do NOT have access to the LayoutTest directory, we need |
| 101 # to map them here. In practice, these do not take up much space. | 101 # to map them here. In practice, these do not take up much space. |
| 102 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 102 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
| 103 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 103 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
| 104 Var("webkit_revision"), | 104 Var("webkit_revision"), |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ] | 308 ] |
| 309 | 309 |
| 310 | 310 |
| 311 hooks = [ | 311 hooks = [ |
| 312 { | 312 { |
| 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 314 "pattern": ".", | 314 "pattern": ".", |
| 315 "action": ["python", "src/build/gyp_chromium"], | 315 "action": ["python", "src/build/gyp_chromium"], |
| 316 }, | 316 }, |
| 317 ] | 317 ] |
| OLD | NEW |