| 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": "93705", | 7 "webkit_revision": "93705", |
| 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 # These hashes need to be updated when nacl_revision is changed. | 10 # These hashes need to be updated when nacl_revision is changed. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 (Var("googlecode_url") % "google-cache-invalidation-api") + | 91 (Var("googlecode_url") % "google-cache-invalidation-api") + |
| 92 "/trunk/src/google@135", | 92 "/trunk/src/google@135", |
| 93 | 93 |
| 94 "src/third_party/leveldatabase/src": | 94 "src/third_party/leveldatabase/src": |
| 95 (Var("googlecode_url") % "leveldb") + "/trunk@47", | 95 (Var("googlecode_url") % "leveldb") + "/trunk@47", |
| 96 | 96 |
| 97 "src/third_party/snappy/src": | 97 "src/third_party/snappy/src": |
| 98 (Var("googlecode_url") % "snappy") + "/trunk@37", | 98 (Var("googlecode_url") % "snappy") + "/trunk@37", |
| 99 | 99 |
| 100 "src/tools/gyp": | 100 "src/tools/gyp": |
| 101 (Var("googlecode_url") % "gyp") + "/trunk@1006", | 101 (Var("googlecode_url") % "gyp") + "/trunk@1012", |
| 102 | 102 |
| 103 "src/v8": | 103 "src/v8": |
| 104 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 104 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
| 105 | 105 |
| 106 "src/native_client": | 106 "src/native_client": |
| 107 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 107 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
| 108 | 108 |
| 109 "src/native_client/src/third_party/ppapi": | 109 "src/native_client/src/third_party/ppapi": |
| 110 # TODO(brettw) enable the From() line instead when checkdeps is fixed. | 110 # TODO(brettw) enable the From() line instead when checkdeps is fixed. |
| 111 #From("src/native_client", "native_client/src/third_party/ppapi"), | 111 #From("src/native_client", "native_client/src/third_party/ppapi"), |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 "--nacl-newlib-only", | 434 "--nacl-newlib-only", |
| 435 "--file-hash", "mac_x86_newlib", | 435 "--file-hash", "mac_x86_newlib", |
| 436 Var("nacl_toolchain_mac_x86_newlib_hash"), | 436 Var("nacl_toolchain_mac_x86_newlib_hash"), |
| 437 "--file-hash", "win_x86_newlib", | 437 "--file-hash", "win_x86_newlib", |
| 438 Var("nacl_toolchain_win_x86_newlib_hash"), | 438 Var("nacl_toolchain_win_x86_newlib_hash"), |
| 439 "--file-hash", "linux_x86_newlib", | 439 "--file-hash", "linux_x86_newlib", |
| 440 Var("nacl_toolchain_linux_x86_newlib_hash"), | 440 Var("nacl_toolchain_linux_x86_newlib_hash"), |
| 441 ], | 441 ], |
| 442 }, | 442 }, |
| 443 ] | 443 ] |
| OLD | NEW |