| 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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 "src/third_party/pywebsocket/src": | 322 "src/third_party/pywebsocket/src": |
| 323 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 323 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", |
| 324 | 324 |
| 325 "src/third_party/opus/src": | 325 "src/third_party/opus/src": |
| 326 "/trunk/deps/third_party/opus@173498", | 326 "/trunk/deps/third_party/opus@173498", |
| 327 | 327 |
| 328 "src/third_party/accessibility-developer-tools": | 328 "src/third_party/accessibility-developer-tools": |
| 329 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", | 329 Var("chromium_git") + "/external/accessibility-developer-tools.git@ad5df9a53
41d38778658c90e4aa241c4ebe4e8aa", |
| 330 | 330 |
| 331 "src/webkit/media/crypto/ppapi/cdm": | 331 "src/webkit/media/crypto/ppapi/cdm": |
| 332 "/trunk/deps/cdm@173055", | 332 "/trunk/deps/cdm@181763", |
| 333 } | 333 } |
| 334 | 334 |
| 335 | 335 |
| 336 deps_os = { | 336 deps_os = { |
| 337 "win": { | 337 "win": { |
| 338 "src/chrome/tools/test/reference_build/chrome_win": | 338 "src/chrome/tools/test/reference_build/chrome_win": |
| 339 "/trunk/deps/reference_builds/chrome_win@137747", | 339 "/trunk/deps/reference_builds/chrome_win@137747", |
| 340 | 340 |
| 341 "src/third_party/cygwin": | 341 "src/third_party/cygwin": |
| 342 "/trunk/deps/third_party/cygwin@133786", | 342 "/trunk/deps/third_party/cygwin@133786", |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 667 "pattern": ".", | 667 "pattern": ".", |
| 668 "action": ["python", "src/build/gyp_chromium"], | 668 "action": ["python", "src/build/gyp_chromium"], |
| 669 }, | 669 }, |
| 670 { | 670 { |
| 671 # Check for landmines (reasons to clobber the build). | 671 # Check for landmines (reasons to clobber the build). |
| 672 "pattern": ".", | 672 "pattern": ".", |
| 673 "action": ["python", "src/build/landmines.py"], | 673 "action": ["python", "src/build/landmines.py"], |
| 674 }, | 674 }, |
| 675 ] | 675 ] |
| OLD | NEW |