| 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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 # Everybody can use some things. | 562 # Everybody can use some things. |
| 563 "+base", | 563 "+base", |
| 564 "+build", | 564 "+build", |
| 565 "+googleurl", | 565 "+googleurl", |
| 566 "+ipc", | 566 "+ipc", |
| 567 | 567 |
| 568 # For now, we allow ICU to be included by specifying "unicode/...", although | 568 # For now, we allow ICU to be included by specifying "unicode/...", although |
| 569 # this should probably change. | 569 # this should probably change. |
| 570 "+unicode", | 570 "+unicode", |
| 571 "+testing", | 571 "+testing", |
| 572 |
| 573 # Until we finish breaking dependencies of base/prefs back to chrome/, |
| 574 # don't try to use it (unless you're in chrome/). |
| 575 "-base/prefs", |
| 572 ] | 576 ] |
| 573 | 577 |
| 574 | 578 |
| 575 # checkdeps.py shouldn't check include paths for files in these dirs: | 579 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 576 skip_child_includes = [ | 580 skip_child_includes = [ |
| 577 "breakpad", | 581 "breakpad", |
| 578 "chrome_frame", | 582 "chrome_frame", |
| 579 "delegate_execute", | 583 "delegate_execute", |
| 580 "metro_driver", | 584 "metro_driver", |
| 581 "native_client_sdk", | 585 "native_client_sdk", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 "pattern": ".", | 626 "pattern": ".", |
| 623 "action": ["python", "src/build/util/lastchange.py", | 627 "action": ["python", "src/build/util/lastchange.py", |
| 624 "-o", "src/build/util/LASTCHANGE"], | 628 "-o", "src/build/util/LASTCHANGE"], |
| 625 }, | 629 }, |
| 626 { | 630 { |
| 627 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 631 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 628 "pattern": ".", | 632 "pattern": ".", |
| 629 "action": ["python", "src/build/gyp_chromium"], | 633 "action": ["python", "src/build/gyp_chromium"], |
| 630 }, | 634 }, |
| 631 ] | 635 ] |
| OLD | NEW |