| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 } | 553 } |
| 554 | 554 |
| 555 | 555 |
| 556 include_rules = [ | 556 include_rules = [ |
| 557 # Everybody can use some things. | 557 # Everybody can use some things. |
| 558 "+base", | 558 "+base", |
| 559 "+build", | 559 "+build", |
| 560 "+googleurl", | 560 "+googleurl", |
| 561 "+ipc", | 561 "+ipc", |
| 562 | 562 |
| 563 # Everybody can use headers generated by tools/generate_library_loader. |
| 564 "+library_loaders", |
| 565 |
| 563 # For now, we allow ICU to be included by specifying "unicode/...", although | 566 # For now, we allow ICU to be included by specifying "unicode/...", although |
| 564 # this should probably change. | 567 # this should probably change. |
| 565 "+unicode", | 568 "+unicode", |
| 566 "+testing", | 569 "+testing", |
| 567 ] | 570 ] |
| 568 | 571 |
| 569 | 572 |
| 570 # checkdeps.py shouldn't check include paths for files in these dirs: | 573 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 571 skip_child_includes = [ | 574 skip_child_includes = [ |
| 572 "breakpad", | 575 "breakpad", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 625 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 623 "pattern": ".", | 626 "pattern": ".", |
| 624 "action": ["python", "src/build/gyp_chromium"], | 627 "action": ["python", "src/build/gyp_chromium"], |
| 625 }, | 628 }, |
| 626 { | 629 { |
| 627 # Check for landmines (reasons to clobber the build). | 630 # Check for landmines (reasons to clobber the build). |
| 628 "pattern": ".", | 631 "pattern": ".", |
| 629 "action": ["python", "src/build/landmines.py"], | 632 "action": ["python", "src/build/landmines.py"], |
| 630 }, | 633 }, |
| 631 ] | 634 ] |
| OLD | NEW |