| 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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 "+unicode", | 545 "+unicode", |
| 546 "+testing", | 546 "+testing", |
| 547 ] | 547 ] |
| 548 | 548 |
| 549 | 549 |
| 550 # checkdeps.py shouldn't check include paths for files in these dirs: | 550 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 551 skip_child_includes = [ | 551 skip_child_includes = [ |
| 552 "breakpad", | 552 "breakpad", |
| 553 "chrome_frame", | 553 "chrome_frame", |
| 554 "delegate_execute", | 554 "delegate_execute", |
| 555 "metro_driver", | |
| 556 "native_client_sdk", | 555 "native_client_sdk", |
| 557 "o3d", | 556 "o3d", |
| 558 "pdf", | 557 "pdf", |
| 559 "sdch", | 558 "sdch", |
| 560 "skia", | 559 "skia", |
| 561 "testing", | 560 "testing", |
| 562 "third_party", | 561 "third_party", |
| 563 "v8", | 562 "v8", |
| 563 "win8", |
| 564 ] | 564 ] |
| 565 | 565 |
| 566 | 566 |
| 567 hooks = [ | 567 hooks = [ |
| 568 { | 568 { |
| 569 # This downloads binaries for Native Client's newlib toolchain. | 569 # This downloads binaries for Native Client's newlib toolchain. |
| 570 # Done in lieu of building the toolchain from scratch as it can take | 570 # Done in lieu of building the toolchain from scratch as it can take |
| 571 # anywhere from 30 minutes to 4 hours depending on platform to build. | 571 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 572 "pattern": ".", | 572 "pattern": ".", |
| 573 "action": [ | 573 "action": [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 597 "pattern": ".", | 597 "pattern": ".", |
| 598 "action": ["python", "src/build/util/lastchange.py", | 598 "action": ["python", "src/build/util/lastchange.py", |
| 599 "-o", "src/build/util/LASTCHANGE"], | 599 "-o", "src/build/util/LASTCHANGE"], |
| 600 }, | 600 }, |
| 601 { | 601 { |
| 602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 603 "pattern": ".", | 603 "pattern": ".", |
| 604 "action": ["python", "src/build/gyp_chromium"], | 604 "action": ["python", "src/build/gyp_chromium"], |
| 605 }, | 605 }, |
| 606 ] | 606 ] |
| OLD | NEW |