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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "112382", | 8 "webkit_revision": "112382", |
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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 Var("webkit_revision"), | 212 Var("webkit_revision"), |
213 "src/content/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": | 213 "src/content/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": |
214 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + | 214 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + |
215 Var("webkit_revision"), | 215 Var("webkit_revision"), |
216 "src/content/test/data/layout_tests/LayoutTests/http/tests/websocket/tests": | 216 "src/content/test/data/layout_tests/LayoutTests/http/tests/websocket/tests": |
217 Var("webkit_trunk") + "/LayoutTests/http/tests/websocket/tests@" + | 217 Var("webkit_trunk") + "/LayoutTests/http/tests/websocket/tests@" + |
218 Var("webkit_revision"), | 218 Var("webkit_revision"), |
219 "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers
": | 219 "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers
": |
220 Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/workers@" + | 220 Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/workers@" + |
221 Var("webkit_revision"), | 221 Var("webkit_revision"), |
| 222 "src/content/test/data/layout_tests/LayoutTests/platform/chromium/fast/events"
: |
| 223 Var("webkit_trunk") + "/LayoutTests/platform/chromium/fast/events@" + |
| 224 Var("webkit_revision"), |
222 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/eve
nts": | 225 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/eve
nts": |
223 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/events@" + | 226 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/events@" + |
224 Var("webkit_revision"), | 227 Var("webkit_revision"), |
225 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/wor
kers": | 228 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/wor
kers": |
226 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/workers@" + | 229 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/workers@" + |
227 Var("webkit_revision"), | 230 Var("webkit_revision"), |
228 "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache": | 231 "src/content/test/data/layout_tests/LayoutTests/http/tests/appcache": |
229 Var("webkit_trunk") + "/LayoutTests/http/tests/appcache@" + | 232 Var("webkit_trunk") + "/LayoutTests/http/tests/appcache@" + |
230 Var("webkit_revision"), | 233 Var("webkit_revision"), |
231 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/http/tes
ts/workers": | 234 "src/content/test/data/layout_tests/LayoutTests/platform/chromium-win/http/tes
ts/workers": |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 "pattern": ".", | 523 "pattern": ".", |
521 "action": ["python", "src/build/util/lastchange.py", | 524 "action": ["python", "src/build/util/lastchange.py", |
522 "-o", "src/build/util/LASTCHANGE"], | 525 "-o", "src/build/util/LASTCHANGE"], |
523 }, | 526 }, |
524 { | 527 { |
525 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 528 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
526 "pattern": ".", | 529 "pattern": ".", |
527 "action": ["python", "src/build/gyp_chromium"], | 530 "action": ["python", "src/build/gyp_chromium"], |
528 }, | 531 }, |
529 ] | 532 ] |
OLD | NEW |