| 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": "79665", | 7 "webkit_revision": "79665", |
| 8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
| 9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
| 10 "nacl_revision": "4382", | 10 "nacl_revision": "4382", |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 # this should probably change. | 305 # this should probably change. |
| 306 "+unicode", | 306 "+unicode", |
| 307 "+testing", | 307 "+testing", |
| 308 ] | 308 ] |
| 309 | 309 |
| 310 | 310 |
| 311 # checkdeps.py shouldn't check include paths for files in these dirs: | 311 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 312 skip_child_includes = [ | 312 skip_child_includes = [ |
| 313 "breakpad", | 313 "breakpad", |
| 314 "chrome_frame", | 314 "chrome_frame", |
| 315 "gears", | |
| 316 "native_client", | 315 "native_client", |
| 317 "o3d", | 316 "o3d", |
| 318 "pdf", | 317 "pdf", |
| 319 "sdch", | 318 "sdch", |
| 320 "skia", | 319 "skia", |
| 321 "testing", | 320 "testing", |
| 322 "third_party", | 321 "third_party", |
| 323 "v8", | 322 "v8", |
| 324 ] | 323 ] |
| 325 | 324 |
| 326 | 325 |
| 327 hooks = [ | 326 hooks = [ |
| 328 { | 327 { |
| 329 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 328 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 330 "pattern": ".", | 329 "pattern": ".", |
| 331 "action": ["python", "src/build/gyp_chromium"], | 330 "action": ["python", "src/build/gyp_chromium"], |
| 332 }, | 331 }, |
| 333 ] | 332 ] |
| OLD | NEW |