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": "82837", | 7 "webkit_revision": "82837", |
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "src/third_party/WebKit/Source": | 96 "src/third_party/WebKit/Source": |
97 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), | 97 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), |
98 | 98 |
99 "src/third_party/WebKit/Tools/DumpRenderTree": | 99 "src/third_party/WebKit/Tools/DumpRenderTree": |
100 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), | 100 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), |
101 | 101 |
102 "src/third_party/WebKit/Tools/Scripts": | 102 "src/third_party/WebKit/Tools/Scripts": |
103 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), | 103 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), |
104 | 104 |
105 "src/third_party/ots": | 105 "src/third_party/ots": |
106 (Var("googlecode_url") % "ots") + "/trunk@61", | 106 (Var("googlecode_url") % "ots") + "/trunk@62", |
107 | 107 |
108 "src/tools/page_cycler/acid3": | 108 "src/tools/page_cycler/acid3": |
109 "/trunk/deps/page_cycler/acid3@19546", | 109 "/trunk/deps/page_cycler/acid3@19546", |
110 | 110 |
111 # We run these layout tests as UI tests. Since many of the buildbots that | 111 # We run these layout tests as UI tests. Since many of the buildbots that |
112 # run layout tests do NOT have access to the LayoutTest directory, we need | 112 # run layout tests do NOT have access to the LayoutTest directory, we need |
113 # to map them here. In practice, these do not take up much space. | 113 # to map them here. In practice, these do not take up much space. |
114 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 114 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
115 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 115 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
116 Var("webkit_revision"), | 116 Var("webkit_revision"), |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 ] | 345 ] |
346 | 346 |
347 | 347 |
348 hooks = [ | 348 hooks = [ |
349 { | 349 { |
350 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 350 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
351 "pattern": ".", | 351 "pattern": ".", |
352 "action": ["python", "src/build/gyp_chromium"], | 352 "action": ["python", "src/build/gyp_chromium"], |
353 }, | 353 }, |
354 ] | 354 ] |
OLD | NEW |