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 "googlecode_git_url": "https://code.google.com/p%s", | 8 "googlecode_git_url": "https://code.google.com/p%s", |
9 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 9 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
10 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 10 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 # Everybody can use some things. | 564 # Everybody can use some things. |
565 "+base", | 565 "+base", |
566 "+build", | 566 "+build", |
567 "+googleurl", | 567 "+googleurl", |
568 "+ipc", | 568 "+ipc", |
569 | 569 |
570 # For now, we allow ICU to be included by specifying "unicode/...", although | 570 # For now, we allow ICU to be included by specifying "unicode/...", although |
571 # this should probably change. | 571 # this should probably change. |
572 "+unicode", | 572 "+unicode", |
573 "+testing", | 573 "+testing", |
| 574 |
| 575 # Everybody can use headers generated by tools/generate_library_loader. |
| 576 "+library_loaders", |
574 ] | 577 ] |
575 | 578 |
576 | 579 |
577 # checkdeps.py shouldn't check include paths for files in these dirs: | 580 # checkdeps.py shouldn't check include paths for files in these dirs: |
578 skip_child_includes = [ | 581 skip_child_includes = [ |
579 "breakpad", | 582 "breakpad", |
580 "chrome_frame", | 583 "chrome_frame", |
581 "delegate_execute", | 584 "delegate_execute", |
582 "metro_driver", | 585 "metro_driver", |
583 "native_client_sdk", | 586 "native_client_sdk", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 632 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
630 "pattern": ".", | 633 "pattern": ".", |
631 "action": ["python", "src/build/gyp_chromium"], | 634 "action": ["python", "src/build/gyp_chromium"], |
632 }, | 635 }, |
633 { | 636 { |
634 # Check for landmines (reasons to clobber the build). | 637 # Check for landmines (reasons to clobber the build). |
635 "pattern": ".", | 638 "pattern": ".", |
636 "action": ["python", "src/build/landmines.py"], | 639 "action": ["python", "src/build/landmines.py"], |
637 }, | 640 }, |
638 ] | 641 ] |
OLD | NEW |