Chromium Code Reviews| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 603 # Done in lieu of building the toolchain from scratch as it can take | 603 # Done in lieu of building the toolchain from scratch as it can take |
| 604 # anywhere from 30 minutes to 4 hours depending on platform to build. | 604 # anywhere from 30 minutes to 4 hours depending on platform to build. |
| 605 "pattern": ".", | 605 "pattern": ".", |
| 606 "action": [ | 606 "action": [ |
| 607 "python", "src/build/download_nacl_toolchains.py", | 607 "python", "src/build/download_nacl_toolchains.py", |
| 608 "--no-arm-trusted", | 608 "--no-arm-trusted", |
| 609 "--keep", | 609 "--keep", |
| 610 ], | 610 ], |
| 611 }, | 611 }, |
| 612 { | 612 { |
| 613 # Download arm sysroot image to src/arm-sysroot. This image updates | |
| 614 # at about the same rate that the chrome build deps change. | |
| 615 # This script is a no-op except for linux users who have | |
| 616 # target_arch=arm in thier GYP_DEFINES. | |
| 617 "pattern": ".", | |
| 618 "action": [ "python", "src/build/install-arm-sysroot.py", "--linux-only" ], | |
|
tony
2012/12/07 01:01:42
Is this for nacl? Should we just merge this script
Sam Clegg
2012/12/07 18:29:37
No, this is for cross building chrome for arm/linu
| |
| 619 }, | |
| 620 { | |
| 613 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 621 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes |
| 614 # zero seconds to run. If something changed, it downloads a prebuilt clang, | 622 # zero seconds to run. If something changed, it downloads a prebuilt clang, |
| 615 # which takes ~20s, but clang speeds up builds by more than 20s. | 623 # which takes ~20s, but clang speeds up builds by more than 20s. |
| 616 "pattern": ".", | 624 "pattern": ".", |
| 617 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 625 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
| 618 }, | 626 }, |
| 619 { | 627 { |
| 620 # Update the cygwin mount on Windows. | 628 # Update the cygwin mount on Windows. |
| 621 "pattern": ".", | 629 "pattern": ".", |
| 622 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | 630 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], |
| 623 }, | 631 }, |
| 624 { | 632 { |
| 625 # Update LASTCHANGE. This is also run by export_tarball.py in | 633 # Update LASTCHANGE. This is also run by export_tarball.py in |
| 626 # src/tools/export_tarball - please keep them in sync. | 634 # src/tools/export_tarball - please keep them in sync. |
| 627 "pattern": ".", | 635 "pattern": ".", |
| 628 "action": ["python", "src/build/util/lastchange.py", | 636 "action": ["python", "src/build/util/lastchange.py", |
| 629 "-o", "src/build/util/LASTCHANGE"], | 637 "-o", "src/build/util/LASTCHANGE"], |
| 630 }, | 638 }, |
| 631 { | 639 { |
| 632 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 640 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 633 "pattern": ".", | 641 "pattern": ".", |
| 634 "action": ["python", "src/build/gyp_chromium"], | 642 "action": ["python", "src/build/gyp_chromium"], |
| 635 }, | 643 }, |
| 636 { | 644 { |
| 637 # Check for landmines (reasons to clobber the build). | 645 # Check for landmines (reasons to clobber the build). |
| 638 "pattern": ".", | 646 "pattern": ".", |
| 639 "action": ["python", "src/build/landmines.py"], | 647 "action": ["python", "src/build/landmines.py"], |
| 640 }, | 648 }, |
| 641 ] | 649 ] |
| OLD | NEW |