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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 { | 637 { |
638 # Download arm sysroot image to src/arm-sysroot. This image updates | 638 # Download 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 thier 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 # Downloads the Debian Wheezy sysroot to chrome/installer/linux/internal |
| 648 # if needed. This sysroot updates at about the same rate that the chrome |
| 649 # build deps change. This script is a no-op except for linux users who have |
| 650 # src-internal access and are doing official chrome builds. |
| 651 "pattern": ".", |
| 652 "action": ["src/build/linux/install-debian.wheezy.sysroot.wrapper.sh"], |
| 653 }, |
| 654 { |
647 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 655 # 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, | 656 # 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. | 657 # which takes ~20s, but clang speeds up builds by more than 20s. |
650 "pattern": ".", | 658 "pattern": ".", |
651 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 659 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
652 }, | 660 }, |
653 { | 661 { |
654 # Update the cygwin mount on Windows. | 662 # Update the cygwin mount on Windows. |
655 "pattern": ".", | 663 "pattern": ".", |
656 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], | 664 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], |
657 }, | 665 }, |
658 { | 666 { |
659 # Update LASTCHANGE. This is also run by export_tarball.py in | 667 # Update LASTCHANGE. This is also run by export_tarball.py in |
660 # src/tools/export_tarball - please keep them in sync. | 668 # src/tools/export_tarball - please keep them in sync. |
661 "pattern": ".", | 669 "pattern": ".", |
662 "action": ["python", "src/build/util/lastchange.py", | 670 "action": ["python", "src/build/util/lastchange.py", |
663 "-o", "src/build/util/LASTCHANGE"], | 671 "-o", "src/build/util/LASTCHANGE"], |
664 }, | 672 }, |
665 { | 673 { |
666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 674 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
667 "pattern": ".", | 675 "pattern": ".", |
668 "action": ["python", "src/build/gyp_chromium"], | 676 "action": ["python", "src/build/gyp_chromium"], |
669 }, | 677 }, |
670 { | 678 { |
671 # Check for landmines (reasons to clobber the build). | 679 # Check for landmines (reasons to clobber the build). |
672 "pattern": ".", | 680 "pattern": ".", |
673 "action": ["python", "src/build/landmines.py"], | 681 "action": ["python", "src/build/landmines.py"], |
674 }, | 682 }, |
675 ] | 683 ] |
OLD | NEW |