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": "106344", | 8 "webkit_revision": "106344", |
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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 303 |
304 "src/third_party/libphonenumber/src/phonenumbers": | 304 "src/third_party/libphonenumber/src/phonenumbers": |
305 (Var("googlecode_url") % "libphonenumber") + | 305 (Var("googlecode_url") % "libphonenumber") + |
306 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 306 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
307 "src/third_party/libphonenumber/src/test": | 307 "src/third_party/libphonenumber/src/test": |
308 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 308 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
309 Var("libphonenumber_revision"), | 309 Var("libphonenumber_revision"), |
310 "src/third_party/libphonenumber/src/resources": | 310 "src/third_party/libphonenumber/src/resources": |
311 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 311 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
312 Var("libphonenumber_revision"), | 312 Var("libphonenumber_revision"), |
| 313 |
| 314 "src/third_party/undoview": |
| 315 "/trunk/deps/third_party/undoview@119694", |
313 } | 316 } |
314 | 317 |
315 | 318 |
316 deps_os = { | 319 deps_os = { |
317 "win": { | 320 "win": { |
318 "src/chrome/tools/test/reference_build/chrome_win": | 321 "src/chrome/tools/test/reference_build/chrome_win": |
319 "/trunk/deps/reference_builds/chrome_win@89574", | 322 "/trunk/deps/reference_builds/chrome_win@89574", |
320 | 323 |
321 "src/third_party/cygwin": | 324 "src/third_party/cygwin": |
322 "/trunk/deps/third_party/cygwin@66844", | 325 "/trunk/deps/third_party/cygwin@66844", |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 # Update the cygwin mount on Windows. | 486 # Update the cygwin mount on Windows. |
484 "pattern": ".", | 487 "pattern": ".", |
485 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | 488 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], |
486 }, | 489 }, |
487 { | 490 { |
488 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 491 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
489 "pattern": ".", | 492 "pattern": ".", |
490 "action": ["python", "src/build/gyp_chromium"], | 493 "action": ["python", "src/build/gyp_chromium"], |
491 }, | 494 }, |
492 ] | 495 ] |
OLD | NEW |