Chromium Code Reviews| 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": "https://%s.svn.sourceforge.net/svnroot", | |
|
nsylvain
2011/10/18 22:41:46
can you change this to :
https://%(repo)s.svn.sour
Ronghua
2011/10/18 23:31:31
Done.
| |
| 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 7 "webkit_revision": "97725", | 8 "webkit_revision": "97725", |
| 8 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 9 "swig_revision": "69281", | 10 "swig_revision": "69281", |
| 10 "nacl_revision": "6941", | 11 "nacl_revision": "6941", |
| 11 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 12 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
| 12 # to update other nacl_*_revision's. | 13 # to update other nacl_*_revision's. |
| 13 # TODO(brettw) We should use the "From" syntax to avoid hardcoding the | 14 # TODO(brettw) We should use the "From" syntax to avoid hardcoding the |
| 14 # revisions here, but it makes checkdeps confused. We should fix checkdeps. | 15 # revisions here, but it makes checkdeps confused. We should fix checkdeps. |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 267 # TODO(brettw) enable the From() line instead when checkdeps is fixed. | 268 # TODO(brettw) enable the From() line instead when checkdeps is fixed. |
| 268 #From("src/native_client", "native_client/src/third_party/pylib"), | 269 #From("src/native_client", "native_client/src/third_party/pylib"), |
| 269 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 270 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), |
| 270 "src/third_party/scons-2.0.1": | 271 "src/third_party/scons-2.0.1": |
| 271 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 272 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + |
| 272 Var("nacl_tools_revision"), | 273 Var("nacl_tools_revision"), |
| 273 | 274 |
| 274 "src/third_party/webrtc": | 275 "src/third_party/webrtc": |
| 275 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), | 276 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), |
| 276 | 277 |
| 278 "src/third_party/jsoncpp": | |
| 279 (Var("sourceforge_url") % "jsoncpp") + "/jsoncpp/trunk/jsoncpp@246", | |
|
nsylvain
2011/10/18 22:41:46
and here:
% {"repo": "jsoncpp"}
Ronghua
2011/10/18 23:31:31
Done.
| |
| 280 | |
| 277 "src/third_party/mozc/session": | 281 "src/third_party/mozc/session": |
| 278 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", | 282 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", |
| 279 | 283 |
| 280 "src/third_party/smhasher/src": | 284 "src/third_party/smhasher/src": |
| 281 (Var("googlecode_url") % "smhasher") + "/trunk@136", | 285 (Var("googlecode_url") % "smhasher") + "/trunk@136", |
| 282 } | 286 } |
| 283 | 287 |
| 284 | 288 |
| 285 deps_os = { | 289 deps_os = { |
| 286 "win": { | 290 "win": { |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 434 # which takes ~20s, but clang speeds up builds by more than 20s. | 438 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 435 "pattern": ".", | 439 "pattern": ".", |
| 436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 440 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 437 }, | 441 }, |
| 438 { | 442 { |
| 439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 443 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 440 "pattern": ".", | 444 "pattern": ".", |
| 441 "action": ["python", "src/build/gyp_chromium"], | 445 "action": ["python", "src/build/gyp_chromium"], |
| 442 }, | 446 }, |
| 443 ] | 447 ] |
| OLD | NEW |