| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": | 2 "webkit_trunk": |
| 3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "webkit_revision": "64101", | 4 "webkit_revision": "64101", |
| 5 "ffmpeg_revision": "49485", | 5 "ffmpeg_revision": "49485", |
| 6 "skia_revision": "589", | 6 "skia_revision": "589", |
| 7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
| 8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
| 9 "nacl_revision": "2776", | 9 "nacl_revision": "2776", |
| 10 "libvpx_revision": "50313", | 10 "libvpx_revision": "50313", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 | 257 |
| 258 include_rules = [ | 258 include_rules = [ |
| 259 # Everybody can use some things. | 259 # Everybody can use some things. |
| 260 "+base", | 260 "+base", |
| 261 "+build", | 261 "+build", |
| 262 "+ipc", | 262 "+ipc", |
| 263 "+rlz", | 263 "+rlz", |
| 264 | 264 |
| 265 # For now, we allow ICU to be included by specifying "unicode/...", although | 265 # For now, we allow ICU to be included by specifying "unicode/...", although |
| 266 # this should probably change. | 266 # this should probably change. |
| 267 "+unicode", | 267 "+unicode", |
| 268 "+testing", | 268 "+testing", |
| 269 ] | 269 ] |
| 270 | 270 |
| 271 | 271 |
| 272 # checkdeps.py shouldn't check include paths for files in these dirs: | 272 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 273 skip_child_includes = [ | 273 skip_child_includes = [ |
| 274 "breakpad", | 274 "breakpad", |
| 275 "chrome_frame", | 275 "chrome_frame", |
| 276 "gears", | 276 "gears", |
| 277 "native_client", | 277 "native_client", |
| 278 "o3d", | 278 "o3d", |
| 279 "sdch", | 279 "sdch", |
| 280 "skia", | 280 "skia", |
| 281 "testing", | 281 "testing", |
| 282 "third_party", | 282 "third_party", |
| 283 "v8", | 283 "v8", |
| 284 ] | 284 ] |
| 285 | 285 |
| 286 | 286 |
| 287 hooks = [ | 287 hooks = [ |
| 288 { | 288 { |
| 289 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 289 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 290 "pattern": ".", | 290 "pattern": ".", |
| 291 "action": ["python", "src/build/gyp_chromium"], | 291 "action": ["python", "src/build/gyp_chromium"], |
| 292 }, | 292 }, |
| 293 ] | 293 ] |
| OLD | NEW |