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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 include_rules = [ | 587 include_rules = [ |
588 # Everybody can use some things. | 588 # Everybody can use some things. |
589 "+base", | 589 "+base", |
590 "+build", | 590 "+build", |
591 "+googleurl", | 591 "+googleurl", |
592 "+ipc", | 592 "+ipc", |
593 | 593 |
594 # Everybody can use headers generated by tools/generate_library_loader. | 594 # Everybody can use headers generated by tools/generate_library_loader. |
595 "+library_loaders", | 595 "+library_loaders", |
596 | 596 |
597 # For now, we allow ICU to be included by specifying "unicode/...", although | |
598 # this should probably change. | |
599 "+unicode", | |
600 "+testing", | 597 "+testing", |
601 "+third_party/icu/public", | 598 "+third_party/icu/public", |
602 ] | 599 ] |
603 | 600 |
604 | 601 |
605 # checkdeps.py shouldn't check include paths for files in these dirs: | 602 # checkdeps.py shouldn't check include paths for files in these dirs: |
606 skip_child_includes = [ | 603 skip_child_includes = [ |
607 "breakpad", | 604 "breakpad", |
608 "chrome_frame", | 605 "chrome_frame", |
609 "delegate_execute", | 606 "delegate_execute", |
| 607 "googleurl", |
610 "metro_driver", | 608 "metro_driver", |
611 "native_client_sdk", | 609 "native_client_sdk", |
612 "o3d", | 610 "o3d", |
613 "pdf", | 611 "pdf", |
614 "sdch", | 612 "sdch", |
615 "skia", | 613 "skia", |
616 "testing", | 614 "testing", |
617 "third_party", | 615 "third_party", |
618 "v8", | 616 "v8", |
619 "win8", | 617 "win8", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 662 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
665 "pattern": ".", | 663 "pattern": ".", |
666 "action": ["python", "src/build/gyp_chromium"], | 664 "action": ["python", "src/build/gyp_chromium"], |
667 }, | 665 }, |
668 { | 666 { |
669 # Check for landmines (reasons to clobber the build). | 667 # Check for landmines (reasons to clobber the build). |
670 "pattern": ".", | 668 "pattern": ".", |
671 "action": ["python", "src/build/landmines.py"], | 669 "action": ["python", "src/build/landmines.py"], |
672 }, | 670 }, |
673 ] | 671 ] |
OLD | NEW |