| 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": "114237", | 8 "webkit_revision": "114237", |
| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "src/third_party/icu": | 98 "src/third_party/icu": |
| 99 "/trunk/deps/third_party/icu46@122842", | 99 "/trunk/deps/third_party/icu46@122842", |
| 100 | 100 |
| 101 "src/third_party/hunspell": | 101 "src/third_party/hunspell": |
| 102 "/trunk/deps/third_party/hunspell@129758", | 102 "/trunk/deps/third_party/hunspell@129758", |
| 103 | 103 |
| 104 "src/third_party/hunspell_dictionaries": | 104 "src/third_party/hunspell_dictionaries": |
| 105 "/trunk/deps/third_party/hunspell_dictionaries@79099", | 105 "/trunk/deps/third_party/hunspell_dictionaries@79099", |
| 106 | 106 |
| 107 "src/third_party/safe_browsing/testing": | 107 "src/third_party/safe_browsing/testing": |
| 108 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@109", | 108 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@110", |
| 109 | 109 |
| 110 "src/third_party/cacheinvalidation/files/src/google": | 110 "src/third_party/cacheinvalidation/files/src/google": |
| 111 (Var("googlecode_url") % "google-cache-invalidation-api") + | 111 (Var("googlecode_url") % "google-cache-invalidation-api") + |
| 112 "/trunk/src/google@203", | 112 "/trunk/src/google@203", |
| 113 | 113 |
| 114 "src/third_party/leveldatabase/src": | 114 "src/third_party/leveldatabase/src": |
| 115 (Var("googlecode_url") % "leveldb") + "/trunk@64", | 115 (Var("googlecode_url") % "leveldb") + "/trunk@64", |
| 116 | 116 |
| 117 "src/third_party/snappy/src": | 117 "src/third_party/snappy/src": |
| 118 (Var("googlecode_url") % "snappy") + "/trunk@37", | 118 (Var("googlecode_url") % "snappy") + "/trunk@37", |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 "pattern": ".", | 532 "pattern": ".", |
| 533 "action": ["python", "src/build/util/lastchange.py", | 533 "action": ["python", "src/build/util/lastchange.py", |
| 534 "-o", "src/build/util/LASTCHANGE"], | 534 "-o", "src/build/util/LASTCHANGE"], |
| 535 }, | 535 }, |
| 536 { | 536 { |
| 537 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 537 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 538 "pattern": ".", | 538 "pattern": ".", |
| 539 "action": ["python", "src/build/gyp_chromium"], | 539 "action": ["python", "src/build/gyp_chromium"], |
| 540 }, | 540 }, |
| 541 ] | 541 ] |
| OLD | NEW |