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": "78845", | 7 "webkit_revision": "78845", |
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": "4340", | 10 "nacl_revision": "4340", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "src/third_party/WebKit/Source": | 89 "src/third_party/WebKit/Source": |
90 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), | 90 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), |
91 | 91 |
92 "src/third_party/WebKit/Tools/DumpRenderTree": | 92 "src/third_party/WebKit/Tools/DumpRenderTree": |
93 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), | 93 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), |
94 | 94 |
95 "src/third_party/WebKit/Tools/Scripts": | 95 "src/third_party/WebKit/Tools/Scripts": |
96 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), | 96 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), |
97 | 97 |
98 "src/third_party/ots": | 98 "src/third_party/ots": |
99 (Var("googlecode_url") % "ots") + "/trunk@52", | 99 (Var("googlecode_url") % "ots") + "/trunk@50", |
100 | 100 |
101 "src/tools/page_cycler/acid3": | 101 "src/tools/page_cycler/acid3": |
102 "/trunk/deps/page_cycler/acid3@19546", | 102 "/trunk/deps/page_cycler/acid3@19546", |
103 | 103 |
104 # We run these layout tests as UI tests. Since many of the buildbots that | 104 # We run these layout tests as UI tests. Since many of the buildbots that |
105 # run layout tests do NOT have access to the LayoutTest directory, we need | 105 # run layout tests do NOT have access to the LayoutTest directory, we need |
106 # to map them here. In practice, these do not take up much space. | 106 # to map them here. In practice, these do not take up much space. |
107 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 107 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
108 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 108 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
109 Var("webkit_revision"), | 109 Var("webkit_revision"), |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 ] | 318 ] |
319 | 319 |
320 | 320 |
321 hooks = [ | 321 hooks = [ |
322 { | 322 { |
323 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 323 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
324 "pattern": ".", | 324 "pattern": ".", |
325 "action": ["python", "src/build/gyp_chromium"], | 325 "action": ["python", "src/build/gyp_chromium"], |
326 }, | 326 }, |
327 ] | 327 ] |
OLD | NEW |