| 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": "64789", | 4 "webkit_revision": "64789", |
| 5 "ffmpeg_revision": "54360", | 5 "ffmpeg_revision": "54360", |
| 6 "skia_revision": "592", | 6 "skia_revision": "592", |
| 7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
| 8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
| 9 "nacl_revision": "2886", | 9 "nacl_revision": "2886", |
| 10 "libvpx_revision": "50313", | 10 "libvpx_revision": "50313", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "src/third_party/WebKit/WebKit/chromium": | 76 "src/third_party/WebKit/WebKit/chromium": |
| 77 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), | 77 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), |
| 78 | 78 |
| 79 "src/third_party/WebKit/WebKitTools/DumpRenderTree": | 79 "src/third_party/WebKit/WebKitTools/DumpRenderTree": |
| 80 Var("webkit_trunk") + "/WebKitTools/DumpRenderTree@" + Var("webkit_revision"
), | 80 Var("webkit_trunk") + "/WebKitTools/DumpRenderTree@" + Var("webkit_revision"
), |
| 81 | 81 |
| 82 "src/third_party/WebKit/WebKitTools/Scripts": | 82 "src/third_party/WebKit/WebKitTools/Scripts": |
| 83 Var("webkit_trunk") + "/WebKitTools/Scripts@" + Var("webkit_revision"), | 83 Var("webkit_trunk") + "/WebKitTools/Scripts@" + Var("webkit_revision"), |
| 84 | 84 |
| 85 "src/third_party/ots": | 85 "src/third_party/ots": |
| 86 "http://ots.googlecode.com/svn/trunk@33", | 86 "http://ots.googlecode.com/svn/trunk@34", |
| 87 | 87 |
| 88 "src/tools/page_cycler/acid3": | 88 "src/tools/page_cycler/acid3": |
| 89 "/trunk/deps/page_cycler/acid3@19546", | 89 "/trunk/deps/page_cycler/acid3@19546", |
| 90 | 90 |
| 91 # We run these layout tests as UI tests. Since many of the buildbots that | 91 # We run these layout tests as UI tests. Since many of the buildbots that |
| 92 # run layout tests do NOT have access to the LayoutTest directory, we need | 92 # run layout tests do NOT have access to the LayoutTest directory, we need |
| 93 # to map them here. In practice, these do not take up much space. | 93 # to map them here. In practice, these do not take up much space. |
| 94 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 94 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
| 95 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 95 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
| 96 Var("webkit_revision"), | 96 Var("webkit_revision"), |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 ] | 284 ] |
| 285 | 285 |
| 286 | 286 |
| 287 hooks = [ | 287 hooks = [ |
| 288 { | 288 { |
| 289 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 289 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 290 "pattern": ".", | 290 "pattern": ".", |
| 291 "action": ["python", "src/build/gyp_chromium"], | 291 "action": ["python", "src/build/gyp_chromium"], |
| 292 }, | 292 }, |
| 293 ] | 293 ] |
| OLD | NEW |