| 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": "104657", | 8 "webkit_revision": "104657", |
| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 Var("webkit_revision"), | 211 Var("webkit_revision"), |
| 212 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/test
s/workers": | 212 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/test
s/workers": |
| 213 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers
@" + | 213 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers
@" + |
| 214 Var("webkit_revision"), | 214 Var("webkit_revision"), |
| 215 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/d
omstorage": | 215 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/d
omstorage": |
| 216 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage
@" + | 216 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage
@" + |
| 217 Var("webkit_revision"), | 217 Var("webkit_revision"), |
| 218 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": | 218 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": |
| 219 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + | 219 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + |
| 220 Var("webkit_revision"), | 220 Var("webkit_revision"), |
| 221 "src/chrome/test/data/layout_tests/LayoutTests/storage/indexeddb": |
| 222 Var("webkit_trunk") + "/LayoutTests/storage/indexeddb@" + |
| 223 Var("webkit_revision"), |
| 221 "src/chrome/test/data/layout_tests/LayoutTests/media": | 224 "src/chrome/test/data/layout_tests/LayoutTests/media": |
| 222 Var("webkit_trunk") + "/LayoutTests/media@" + | 225 Var("webkit_trunk") + "/LayoutTests/media@" + |
| 223 Var("webkit_revision"), | 226 Var("webkit_revision"), |
| 224 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": | 227 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/workers": |
| 225 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + | 228 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/workers@" + |
| 226 Var("webkit_revision"), | 229 Var("webkit_revision"), |
| 227 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": | 230 "src/chrome/test/data/layout_tests/LayoutTests/fast/filesystem/resources": |
| 228 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + | 231 Var("webkit_trunk") + "/LayoutTests/fast/filesystem/resources@" + |
| 229 Var("webkit_revision"), | 232 Var("webkit_revision"), |
| 230 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem": | 233 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/filesystem": |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 # which takes ~20s, but clang speeds up builds by more than 20s. | 474 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 472 "pattern": ".", | 475 "pattern": ".", |
| 473 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 476 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 474 }, | 477 }, |
| 475 { | 478 { |
| 476 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 479 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 477 "pattern": ".", | 480 "pattern": ".", |
| 478 "action": ["python", "src/build/gyp_chromium"], | 481 "action": ["python", "src/build/gyp_chromium"], |
| 479 }, | 482 }, |
| 480 ] | 483 ] |
| OLD | NEW |