| 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": "45352", | 4 "webkit_revision": "45352", |
| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 Var("webkit_trunk") + "/JavaScriptCore@" + Var("webkit_revision"), | 44 Var("webkit_trunk") + "/JavaScriptCore@" + Var("webkit_revision"), |
| 45 | 45 |
| 46 "src/third_party/WebKit/WebCore": | 46 "src/third_party/WebKit/WebCore": |
| 47 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), | 47 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), |
| 48 | 48 |
| 49 "src/third_party/WebKit/WebKitLibraries": | 49 "src/third_party/WebKit/WebKitLibraries": |
| 50 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 50 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
| 51 | 51 |
| 52 "src/third_party/tcmalloc/tcmalloc": | 52 "src/third_party/tcmalloc/tcmalloc": |
| 53 "http://google-perftools.googlecode.com/svn/trunk@74", | 53 "http://google-perftools.googlecode.com/svn/trunk@74", |
| 54 |
| 55 "src/tools/page_cycler/acid3": |
| 56 "/trunk/deps/page_cycler/acid3@19546", |
| 54 | 57 |
| 55 # TODO(jianli): Remove this once we do not need to run worker's layout tests | 58 # TODO(jianli): Remove this once we do not need to run worker's layout tests |
| 56 # in ui test. | 59 # in ui test. |
| 57 "src/chrome/test/data/workers/LayoutTests/fast/workers": | 60 "src/chrome/test/data/workers/LayoutTests/fast/workers": |
| 58 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), | 61 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), |
| 59 "src/chrome/test/data/workers/LayoutTests/http/tests/resources": | 62 "src/chrome/test/data/workers/LayoutTests/http/tests/resources": |
| 60 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_rev
ision"), | 63 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_rev
ision"), |
| 61 "src/chrome/test/data/workers/LayoutTests/http/tests/workers": | 64 "src/chrome/test/data/workers/LayoutTests/http/tests/workers": |
| 62 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revis
ion"), | 65 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revis
ion"), |
| 63 "src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest": | 66 "src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest": |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 117 |
| 115 | 118 |
| 116 hooks = [ | 119 hooks = [ |
| 117 { | 120 { |
| 118 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 121 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
| 119 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 122 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
| 120 "action": ["python", "src/tools/gyp/gyp_dogfood", "src/build/all.gyp"], | 123 "action": ["python", "src/tools/gyp/gyp_dogfood", "src/build/all.gyp"], |
| 121 }, | 124 }, |
| 122 ] | 125 ] |
| 123 | 126 |
| OLD | NEW |