| 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": "101316", | 8 "webkit_revision": "101316", |
| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), | 287 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), |
| 288 | 288 |
| 289 "src/third_party/jsoncpp/source/src/lib_json": | 289 "src/third_party/jsoncpp/source/src/lib_json": |
| 290 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 290 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 291 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 291 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
| 292 | 292 |
| 293 "src/third_party/libyuv": | 293 "src/third_party/libyuv": |
| 294 (Var("googlecode_url") % "libyuv") + "/trunk@64", | 294 (Var("googlecode_url") % "libyuv") + "/trunk@64", |
| 295 | 295 |
| 296 "src/third_party/mozc/session": | 296 "src/third_party/mozc/session": |
| 297 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", | 297 (Var("googlecode_url") % "mozc") + "/trunk/src/session@77", |
| 298 |
| 299 "src/third_party/mozc/chrome/chromeos/renderer": |
| 300 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@77", |
| 298 | 301 |
| 299 "src/third_party/smhasher/src": | 302 "src/third_party/smhasher/src": |
| 300 (Var("googlecode_url") % "smhasher") + "/trunk@136", | 303 (Var("googlecode_url") % "smhasher") + "/trunk@136", |
| 301 } | 304 } |
| 302 | 305 |
| 303 | 306 |
| 304 deps_os = { | 307 deps_os = { |
| 305 "win": { | 308 "win": { |
| 306 "src/chrome/tools/test/reference_build/chrome_win": | 309 "src/chrome/tools/test/reference_build/chrome_win": |
| 307 "/trunk/deps/reference_builds/chrome_win@89574", | 310 "/trunk/deps/reference_builds/chrome_win@89574", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 # which takes ~20s, but clang speeds up builds by more than 20s. | 467 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 465 "pattern": ".", | 468 "pattern": ".", |
| 466 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 469 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 467 }, | 470 }, |
| 468 { | 471 { |
| 469 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 472 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 470 "pattern": ".", | 473 "pattern": ".", |
| 471 "action": ["python", "src/build/gyp_chromium"], | 474 "action": ["python", "src/build/gyp_chromium"], |
| 472 }, | 475 }, |
| 473 ] | 476 ] |
| OLD | NEW |