| 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://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "+testing", | 488 "+testing", |
| 489 ] | 489 ] |
| 490 | 490 |
| 491 | 491 |
| 492 # checkdeps.py shouldn't check include paths for files in these dirs: | 492 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 493 skip_child_includes = [ | 493 skip_child_includes = [ |
| 494 "breakpad", | 494 "breakpad", |
| 495 "chrome_frame", | 495 "chrome_frame", |
| 496 "delegate_execute", | 496 "delegate_execute", |
| 497 "metro_driver", | 497 "metro_driver", |
| 498 "native_client", | |
| 499 "native_client_sdk", | 498 "native_client_sdk", |
| 500 "o3d", | 499 "o3d", |
| 501 "pdf", | 500 "pdf", |
| 502 "sdch", | 501 "sdch", |
| 503 "skia", | 502 "skia", |
| 504 "testing", | 503 "testing", |
| 505 "third_party", | 504 "third_party", |
| 506 "v8", | 505 "v8", |
| 507 ] | 506 ] |
| 508 | 507 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "pattern": ".", | 563 "pattern": ".", |
| 565 "action": ["python", "src/build/util/lastchange.py", | 564 "action": ["python", "src/build/util/lastchange.py", |
| 566 "-o", "src/build/util/LASTCHANGE"], | 565 "-o", "src/build/util/LASTCHANGE"], |
| 567 }, | 566 }, |
| 568 { | 567 { |
| 569 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 568 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 570 "pattern": ".", | 569 "pattern": ".", |
| 571 "action": ["python", "src/build/gyp_chromium"], | 570 "action": ["python", "src/build/gyp_chromium"], |
| 572 }, | 571 }, |
| 573 ] | 572 ] |
| OLD | NEW |