| 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://svn.code.sf.net/p/%(repo)s/code", | 8   "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", | 
| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 234   "src/third_party/webpagereplay": | 234   "src/third_party/webpagereplay": | 
| 235     (Var("googlecode_url") % "web-page-replay") + "/trunk@522", | 235     (Var("googlecode_url") % "web-page-replay") + "/trunk@522", | 
| 236 | 236 | 
| 237   "src/third_party/pywebsocket/src": | 237   "src/third_party/pywebsocket/src": | 
| 238     (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 238     (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 
| 239 | 239 | 
| 240   "src/third_party/opus/src": | 240   "src/third_party/opus/src": | 
| 241     "/trunk/deps/third_party/opus@185324", | 241     "/trunk/deps/third_party/opus@185324", | 
| 242 | 242 | 
| 243   "src/media/cdm/ppapi/api": | 243   "src/media/cdm/ppapi/api": | 
| 244     "/trunk/deps/cdm@229868", | 244     "/trunk/deps/cdm@230180", | 
| 245 | 245 | 
| 246   "src/third_party/mesa/src": | 246   "src/third_party/mesa/src": | 
| 247     "/trunk/deps/third_party/mesa@229994", | 247     "/trunk/deps/third_party/mesa@229994", | 
| 248 | 248 | 
| 249   "src/third_party/cld_2/src": | 249   "src/third_party/cld_2/src": | 
| 250     (Var("googlecode_url") % "cld2") + "/trunk@84", | 250     (Var("googlecode_url") % "cld2") + "/trunk@84", | 
| 251 } | 251 } | 
| 252 | 252 | 
| 253 | 253 | 
| 254 deps_os = { | 254 deps_os = { | 
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 612     "pattern": ".", | 612     "pattern": ".", | 
| 613     "action": ["python", "src/build/gyp_chromium"], | 613     "action": ["python", "src/build/gyp_chromium"], | 
| 614   }, | 614   }, | 
| 615   { | 615   { | 
| 616     # Check for landmines (reasons to clobber the build). | 616     # Check for landmines (reasons to clobber the build). | 
| 617     "name": "landmines", | 617     "name": "landmines", | 
| 618     "pattern": ".", | 618     "pattern": ".", | 
| 619     "action": ["python", "src/build/landmines.py"], | 619     "action": ["python", "src/build/landmines.py"], | 
| 620   }, | 620   }, | 
| 621 ] | 621 ] | 
| OLD | NEW | 
|---|