| 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": "93993", | 7 "webkit_revision": "93993", |
| 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": "6562", | 10 "nacl_revision": "6562", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "src/sdch/open-vcdiff": | 56 "src/sdch/open-vcdiff": |
| 57 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", | 57 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", |
| 58 | 58 |
| 59 "src/testing/gtest": | 59 "src/testing/gtest": |
| 60 (Var("googlecode_url") % "googletest") + "/trunk@560", | 60 (Var("googlecode_url") % "googletest") + "/trunk@560", |
| 61 | 61 |
| 62 "src/testing/gmock": | 62 "src/testing/gmock": |
| 63 (Var("googlecode_url") % "googlemock") + "/trunk@374", | 63 (Var("googlecode_url") % "googlemock") + "/trunk@374", |
| 64 | 64 |
| 65 "src/third_party/angle": | 65 "src/third_party/angle": |
| 66 (Var("googlecode_url") % "angleproject") + "/trunk@731", | 66 (Var("googlecode_url") % "angleproject") + "/trunk@740", |
| 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@98343", | 76 "/trunk/deps/third_party/icu46@98343", |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 "--file-hash", "linux_x86_newlib", | 418 "--file-hash", "linux_x86_newlib", |
| 419 Var("nacl_toolchain_linux_x86_newlib_hash"), | 419 Var("nacl_toolchain_linux_x86_newlib_hash"), |
| 420 ], | 420 ], |
| 421 }, | 421 }, |
| 422 { | 422 { |
| 423 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 423 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 424 "pattern": ".", | 424 "pattern": ".", |
| 425 "action": ["python", "src/build/gyp_chromium"], | 425 "action": ["python", "src/build/gyp_chromium"], |
| 426 }, | 426 }, |
| 427 ] | 427 ] |
| OLD | NEW |