| 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": "97950", | 7 "webkit_revision": "97950", |
| 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": "6965", | 10 "nacl_revision": "6965", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 (Var("googlecode_url") % "angleproject") + "/trunk@785", | 66 (Var("googlecode_url") % "angleproject") + "/trunk@785", |
| 67 | 67 |
| 68 # Note that this is *not* where we check out WebKit -- this just | 68 # Note that this is *not* where we check out WebKit -- this just |
| 69 # puts some extra files into place for the real WebKit checkout to | 69 # puts some extra files into place for the real WebKit checkout to |
| 70 # happen. See lines mentioning "webkit_revision" for the real | 70 # happen. See lines mentioning "webkit_revision" for the real |
| 71 # WebKit checkout. | 71 # WebKit checkout. |
| 72 "src/third_party/WebKit": | 72 "src/third_party/WebKit": |
| 73 "/trunk/deps/third_party/WebKit@76115", | 73 "/trunk/deps/third_party/WebKit@76115", |
| 74 | 74 |
| 75 "src/third_party/icu": | 75 "src/third_party/icu": |
| 76 "/trunk/deps/third_party/icu46@101184", | 76 "/trunk/deps/third_party/icu46@106495", |
| 77 | 77 |
| 78 "src/third_party/hunspell": | 78 "src/third_party/hunspell": |
| 79 "/trunk/deps/third_party/hunspell@96723", | 79 "/trunk/deps/third_party/hunspell@96723", |
| 80 | 80 |
| 81 "src/third_party/hunspell_dictionaries": | 81 "src/third_party/hunspell_dictionaries": |
| 82 "/trunk/deps/third_party/hunspell_dictionaries@79099", | 82 "/trunk/deps/third_party/hunspell_dictionaries@79099", |
| 83 | 83 |
| 84 "src/third_party/safe_browsing/testing": | 84 "src/third_party/safe_browsing/testing": |
| 85 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@106", | 85 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@106", |
| 86 | 86 |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 # which takes ~20s, but clang speeds up builds by more than 20s. | 436 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 437 "pattern": ".", | 437 "pattern": ".", |
| 438 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 438 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 439 }, | 439 }, |
| 440 { | 440 { |
| 441 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 441 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 442 "pattern": ".", | 442 "pattern": ".", |
| 443 "action": ["python", "src/build/gyp_chromium"], | 443 "action": ["python", "src/build/gyp_chromium"], |
| 444 }, | 444 }, |
| 445 ] | 445 ] |
| OLD | NEW |