| 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": "104283", | 8 "webkit_revision": "104283", |
| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 Var("webkit_revision"), | 220 Var("webkit_revision"), |
| 221 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/test
s/workers": | 221 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/test
s/workers": |
| 222 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers
@" + | 222 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers
@" + |
| 223 Var("webkit_revision"), | 223 Var("webkit_revision"), |
| 224 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/d
omstorage": | 224 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/d
omstorage": |
| 225 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage
@" + | 225 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage
@" + |
| 226 Var("webkit_revision"), | 226 Var("webkit_revision"), |
| 227 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": | 227 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": |
| 228 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + | 228 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + |
| 229 Var("webkit_revision"), | 229 Var("webkit_revision"), |
| 230 "src/chrome/test/data/layout_tests/LayoutTests/storage/indexeddb": |
| 231 Var("webkit_trunk") + "/LayoutTests/storage/indexeddb@" + |
| 232 Var("webkit_revision"), |
| 230 "src/chrome/test/data/layout_tests/LayoutTests/media": | 233 "src/chrome/test/data/layout_tests/LayoutTests/media": |
| 231 Var("webkit_trunk") + "/LayoutTests/media@" + | 234 Var("webkit_trunk") + "/LayoutTests/media@" + |
| 232 Var("webkit_revision"), | 235 Var("webkit_revision"), |
| 233 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": | 236 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": |
| 234 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + | 237 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + |
| 235 Var("webkit_revision"), | 238 Var("webkit_revision"), |
| 236 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": | 239 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": |
| 237 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + | 240 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + |
| 238 Var("webkit_revision"), | 241 Var("webkit_revision"), |
| 239 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem": | 242 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem": |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 # which takes ~20s, but clang speeds up builds by more than 20s. | 483 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 481 "pattern": ".", | 484 "pattern": ".", |
| 482 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 485 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 483 }, | 486 }, |
| 484 { | 487 { |
| 485 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 488 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 486 "pattern": ".", | 489 "pattern": ".", |
| 487 "action": ["python", "src/build/gyp_chromium"], | 490 "action": ["python", "src/build/gyp_chromium"], |
| 488 }, | 491 }, |
| 489 ] | 492 ] |
| OLD | NEW |