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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 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 | 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 | 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. | 650 # src-internal access and are doing official chrome builds. |
651 "pattern": ".", | 651 "pattern": ".", |
652 "action": ["src/build/linux/install-debian.wheezy.sysroot.wrapper.sh"], | 652 "action": ["python", |
| 653 "src/build/linux/install-debian.wheezy.sysroot.wrapper.py"], |
653 }, | 654 }, |
654 { | 655 { |
655 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes | 656 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes |
656 # zero seconds to run. If something changed, it downloads a prebuilt clang, | 657 # zero seconds to run. If something changed, it downloads a prebuilt clang, |
657 # which takes ~20s, but clang speeds up builds by more than 20s. | 658 # which takes ~20s, but clang speeds up builds by more than 20s. |
658 "pattern": ".", | 659 "pattern": ".", |
659 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 660 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
660 }, | 661 }, |
661 { | 662 { |
662 # Update the cygwin mount on Windows. | 663 # Update the cygwin mount on Windows. |
(...skipping 11 matching lines...) Expand all Loading... |
674 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
675 "pattern": ".", | 676 "pattern": ".", |
676 "action": ["python", "src/build/gyp_chromium"], | 677 "action": ["python", "src/build/gyp_chromium"], |
677 }, | 678 }, |
678 { | 679 { |
679 # Check for landmines (reasons to clobber the build). | 680 # Check for landmines (reasons to clobber the build). |
680 "pattern": ".", | 681 "pattern": ".", |
681 "action": ["python", "src/build/landmines.py"], | 682 "action": ["python", "src/build/landmines.py"], |
682 }, | 683 }, |
683 ] | 684 ] |
OLD | NEW |