| OLD | NEW |
| 1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
| 2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
| 3 | 3 |
| 4 vars = { | 4 vars = { |
| 5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
| 7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
| 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 318 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
| 319 Var("libphonenumber_revision"), | 319 Var("libphonenumber_revision"), |
| 320 | 320 |
| 321 "src/third_party/undoview": | 321 "src/third_party/undoview": |
| 322 "/trunk/deps/third_party/undoview@119694", | 322 "/trunk/deps/third_party/undoview@119694", |
| 323 | 323 |
| 324 "src/tools/deps2git": | 324 "src/tools/deps2git": |
| 325 "/trunk/tools/deps2git@194189", | 325 "/trunk/tools/deps2git@194189", |
| 326 | 326 |
| 327 "src/third_party/webpagereplay": | 327 "src/third_party/webpagereplay": |
| 328 (Var("googlecode_url") % "web-page-replay") + "/trunk@506", | 328 (Var("googlecode_url") % "web-page-replay") + "/trunk@511", |
| 329 | 329 |
| 330 "src/third_party/pywebsocket/src": | 330 "src/third_party/pywebsocket/src": |
| 331 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 331 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", |
| 332 | 332 |
| 333 "src/third_party/opus/src": | 333 "src/third_party/opus/src": |
| 334 "/trunk/deps/third_party/opus@185324", | 334 "/trunk/deps/third_party/opus@185324", |
| 335 | 335 |
| 336 "src/third_party/accessibility-developer-tools": | 336 "src/third_party/accessibility-developer-tools": |
| 337 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", | 337 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", |
| 338 | 338 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 695 "pattern": ".", | 695 "pattern": ".", |
| 696 "action": ["python", "src/build/gyp_chromium"], | 696 "action": ["python", "src/build/gyp_chromium"], |
| 697 }, | 697 }, |
| 698 { | 698 { |
| 699 # Check for landmines (reasons to clobber the build). | 699 # Check for landmines (reasons to clobber the build). |
| 700 "pattern": ".", | 700 "pattern": ".", |
| 701 "action": ["python", "src/build/landmines.py"], | 701 "action": ["python", "src/build/landmines.py"], |
| 702 }, | 702 }, |
| 703 ] | 703 ] |
| OLD | NEW |