| 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": "94807", | 7 "webkit_revision": "94807", |
| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 266 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), |
| 267 "src/third_party/scons-2.0.1": | 267 "src/third_party/scons-2.0.1": |
| 268 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 268 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + |
| 269 Var("nacl_tools_revision"), | 269 Var("nacl_tools_revision"), |
| 270 | 270 |
| 271 "src/third_party/webrtc": | 271 "src/third_party/webrtc": |
| 272 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), | 272 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), |
| 273 | 273 |
| 274 "src/third_party/mozc/session": | 274 "src/third_party/mozc/session": |
| 275 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", | 275 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", |
| 276 |
| 277 "src/third_party/smhasher/src": |
| 278 "http://smhasher.googlecode.com/svn/trunk@136", |
| 276 } | 279 } |
| 277 | 280 |
| 278 | 281 |
| 279 deps_os = { | 282 deps_os = { |
| 280 "win": { | 283 "win": { |
| 281 "src/chrome/tools/test/reference_build/chrome_win": | 284 "src/chrome/tools/test/reference_build/chrome_win": |
| 282 "/trunk/deps/reference_builds/chrome_win@89574", | 285 "/trunk/deps/reference_builds/chrome_win@89574", |
| 283 | 286 |
| 284 "src/third_party/cygwin": | 287 "src/third_party/cygwin": |
| 285 "/trunk/deps/third_party/cygwin@66844", | 288 "/trunk/deps/third_party/cygwin@66844", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 # which takes ~20s, but clang speeds up builds by more than 20s. | 431 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 429 "pattern": ".", | 432 "pattern": ".", |
| 430 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 433 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 431 }, | 434 }, |
| 432 { | 435 { |
| 433 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 436 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 434 "pattern": ".", | 437 "pattern": ".", |
| 435 "action": ["python", "src/build/gyp_chromium"], | 438 "action": ["python", "src/build/gyp_chromium"], |
| 436 }, | 439 }, |
| 437 ] | 440 ] |
| OLD | NEW |