| 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": "94560", | 7 "webkit_revision": "94560", |
| 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": "6641", | 10 "nacl_revision": "6641", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 (Var("googlecode_url") % "google-cache-invalidation-api") + | 88 (Var("googlecode_url") % "google-cache-invalidation-api") + |
| 89 "/trunk/src/google@135", | 89 "/trunk/src/google@135", |
| 90 | 90 |
| 91 "src/third_party/leveldatabase/src": | 91 "src/third_party/leveldatabase/src": |
| 92 (Var("googlecode_url") % "leveldb") + "/trunk@47", | 92 (Var("googlecode_url") % "leveldb") + "/trunk@47", |
| 93 | 93 |
| 94 "src/third_party/snappy/src": | 94 "src/third_party/snappy/src": |
| 95 (Var("googlecode_url") % "snappy") + "/trunk@37", | 95 (Var("googlecode_url") % "snappy") + "/trunk@37", |
| 96 | 96 |
| 97 "src/tools/gyp": | 97 "src/tools/gyp": |
| 98 (Var("googlecode_url") % "gyp") + "/trunk@1031", | 98 (Var("googlecode_url") % "gyp") + "/trunk@1033", |
| 99 | 99 |
| 100 "src/v8": | 100 "src/v8": |
| 101 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 101 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
| 102 | 102 |
| 103 "src/native_client": | 103 "src/native_client": |
| 104 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 104 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
| 105 | 105 |
| 106 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": | 106 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": |
| 107 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + | 107 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + |
| 108 Var("nacl_revision"), | 108 Var("nacl_revision"), |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 # which takes ~20s, but clang speeds up builds by more than 20s. | 428 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 429 "pattern": ".", | 429 "pattern": ".", |
| 430 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 430 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 431 }, | 431 }, |
| 432 { | 432 { |
| 433 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 433 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 434 "pattern": ".", | 434 "pattern": ".", |
| 435 "action": ["python", "src/build/gyp_chromium"], | 435 "action": ["python", "src/build/gyp_chromium"], |
| 436 }, | 436 }, |
| 437 ] | 437 ] |
| OLD | NEW |