| 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://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 # Done in lieu of building the toolchain from scratch as it can take | 628 # Done in lieu of building the toolchain from scratch as it can take |
| 629 # anywhere from 30 minutes to 4 hours depending on platform to build. | 629 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 630 "pattern": ".", | 630 "pattern": ".", |
| 631 "action": [ | 631 "action": [ |
| 632 "python", "src/build/download_nacl_toolchains.py", | 632 "python", "src/build/download_nacl_toolchains.py", |
| 633 "--no-arm-trusted", | 633 "--no-arm-trusted", |
| 634 "--keep", | 634 "--keep", |
| 635 ], | 635 ], |
| 636 }, | 636 }, |
| 637 { | 637 { |
| 638 # Download arm sysroot image to src/arm-sysroot. This image updates | 638 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates |
| 639 # at about the same rate that the chrome build deps change. | 639 # at about the same rate that the chrome build deps change. |
| 640 # This script is a no-op except for linux users who have | 640 # This script is a no-op except for linux users who have |
| 641 # target_arch=arm in thier GYP_DEFINES. | 641 # target_arch=arm in their GYP_DEFINES. |
| 642 "pattern": ".", | 642 "pattern": ".", |
| 643 "action": ["python", "src/build/linux/install-arm-sysroot.py", | 643 "action": ["python", "src/build/linux/install-arm-sysroot.py", |
| 644 "--linux-only"], | 644 "--linux-only"], |
| 645 }, | 645 }, |
| 646 { | 646 { |
| 647 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 647 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes |
| 648 # zero seconds to run. If something changed, it downloads a prebuilt clang, | 648 # zero seconds to run. If something changed, it downloads a prebuilt clang, |
| 649 # which takes ~20s, but clang speeds up builds by more than 20s. | 649 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 650 "pattern": ".", | 650 "pattern": ".", |
| 651 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 651 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 667 "pattern": ".", | 667 "pattern": ".", |
| 668 "action": ["python", "src/build/gyp_chromium"], | 668 "action": ["python", "src/build/gyp_chromium"], |
| 669 }, | 669 }, |
| 670 { | 670 { |
| 671 # Check for landmines (reasons to clobber the build). | 671 # Check for landmines (reasons to clobber the build). |
| 672 "pattern": ".", | 672 "pattern": ".", |
| 673 "action": ["python", "src/build/landmines.py"], | 673 "action": ["python", "src/build/landmines.py"], |
| 674 }, | 674 }, |
| 675 ] | 675 ] |
| OLD | NEW |