| 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": "71820", | 7 "webkit_revision": "71820", |
| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 274 |
| 275 "src/third_party/openssl": | 275 "src/third_party/openssl": |
| 276 "/trunk/deps/third_party/openssl@65717", | 276 "/trunk/deps/third_party/openssl@65717", |
| 277 |
| 278 "src/third_party/cros": |
| 279 Var("chromium_git") + "/cros.git@d4465704", |
| 277 }, | 280 }, |
| 278 } | 281 } |
| 279 | 282 |
| 280 | |
| 281 include_rules = [ | 283 include_rules = [ |
| 282 # Everybody can use some things. | 284 # Everybody can use some things. |
| 283 "+base", | 285 "+base", |
| 284 "+build", | 286 "+build", |
| 285 "+ipc", | 287 "+ipc", |
| 286 | 288 |
| 287 # For now, we allow ICU to be included by specifying "unicode/...", although | 289 # For now, we allow ICU to be included by specifying "unicode/...", although |
| 288 # this should probably change. | 290 # this should probably change. |
| 289 "+unicode", | 291 "+unicode", |
| 290 "+testing", | 292 "+testing", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 306 ] | 308 ] |
| 307 | 309 |
| 308 | 310 |
| 309 hooks = [ | 311 hooks = [ |
| 310 { | 312 { |
| 311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 313 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 312 "pattern": ".", | 314 "pattern": ".", |
| 313 "action": ["python", "src/build/gyp_chromium"], | 315 "action": ["python", "src/build/gyp_chromium"], |
| 314 }, | 316 }, |
| 315 ] | 317 ] |
| OLD | NEW |