| 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 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 7 "webkit_revision": "71400", | 7 "webkit_revision": "71400", |
| 8 "skia_revision": "621", | 8 "skia_revision": "621", |
| 9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 10 "swig_revision": "40423", | 10 "swig_revision": "40423", |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 264 |
| 265 # TODO(ajwong): Move this into the OS-independent block. | 265 # TODO(ajwong): Move this into the OS-independent block. |
| 266 "src/third_party/yasm/source/patched-yasm": | 266 "src/third_party/yasm/source/patched-yasm": |
| 267 "/trunk/deps/third_party/yasm/patched-yasm@50870", | 267 "/trunk/deps/third_party/yasm/patched-yasm@50870", |
| 268 | 268 |
| 269 "src/third_party/swig/linux": | 269 "src/third_party/swig/linux": |
| 270 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 270 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
| 271 | 271 |
| 272 "src/third_party/lss": | 272 "src/third_party/lss": |
| 273 (Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3", | 273 (Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3", |
| 274 |
| 275 "src/third_party/openssl": |
| 276 "/trunk/deps/third_party/openssl@65203", |
| 274 }, | 277 }, |
| 275 } | 278 } |
| 276 | 279 |
| 277 | 280 |
| 278 include_rules = [ | 281 include_rules = [ |
| 279 # Everybody can use some things. | 282 # Everybody can use some things. |
| 280 "+base", | 283 "+base", |
| 281 "+build", | 284 "+build", |
| 282 "+ipc", | 285 "+ipc", |
| 283 | 286 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 303 ] | 306 ] |
| 304 | 307 |
| 305 | 308 |
| 306 hooks = [ | 309 hooks = [ |
| 307 { | 310 { |
| 308 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 309 "pattern": ".", | 312 "pattern": ".", |
| 310 "action": ["python", "src/build/gyp_chromium"], | 313 "action": ["python", "src/build/gyp_chromium"], |
| 311 }, | 314 }, |
| 312 ] | 315 ] |
| OLD | NEW |