Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: DEPS

Issue 16507016: Linux: Call the install-debian-sysroot scripts directly instead of via a wrapper, now that the scri… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/linux/install-debian.wheezy.sysroot.wrapper.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 { 630 {
631 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates 631 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates
632 # at about the same rate that the chrome build deps change. 632 # at about the same rate that the chrome build deps change.
633 # This script is a no-op except for linux users who have 633 # This script is a no-op except for linux users who have
634 # target_arch=arm in their GYP_DEFINES. 634 # target_arch=arm in their GYP_DEFINES.
635 "pattern": ".", 635 "pattern": ".",
636 "action": ["python", "src/build/linux/install-arm-sysroot.py", 636 "action": ["python", "src/build/linux/install-arm-sysroot.py",
637 "--linux-only"], 637 "--linux-only"],
638 }, 638 },
639 { 639 {
640 # Downloads the Debian Wheezy sysroot to chrome/installer/linux/internal 640 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
641 # if needed. This sysroot updates at about the same rate that the chrome 641 # This sysroot updates at about the same rate that the chrome build deps
642 # build deps change. This script is a no-op except for linux users who have 642 # change. This script is a no-op except for linux users who are doing
643 # src-internal access and are doing official chrome builds. 643 # official chrome builds.
644 "pattern": ".", 644 "pattern": ".",
645 "action": ["python", 645 "action": [
646 "src/build/linux/install-debian.wheezy.sysroot.wrapper.py"], 646 "python",
647 "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py",
648 "--linux-only",
649 "--arch=amd64"],
650 },
651 {
652 # Same as above, but for 32-bit Linux.
653 "pattern": ".",
654 "action": [
655 "python",
656 "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroo t.py",
657 "--linux-only",
658 "--arch=i386"],
647 }, 659 },
648 { 660 {
649 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes 661 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
650 # zero seconds to run. If something changed, it downloads a prebuilt clang, 662 # zero seconds to run. If something changed, it downloads a prebuilt clang,
651 # which takes ~20s, but clang speeds up builds by more than 20s. 663 # which takes ~20s, but clang speeds up builds by more than 20s.
652 "pattern": ".", 664 "pattern": ".",
653 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 665 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
654 }, 666 },
655 { 667 {
656 # Update the cygwin mount on Windows. 668 # Update the cygwin mount on Windows.
(...skipping 19 matching lines...) Expand all
676 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 688 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
677 "pattern": ".", 689 "pattern": ".",
678 "action": ["python", "src/build/gyp_chromium"], 690 "action": ["python", "src/build/gyp_chromium"],
679 }, 691 },
680 { 692 {
681 # Check for landmines (reasons to clobber the build). 693 # Check for landmines (reasons to clobber the build).
682 "pattern": ".", 694 "pattern": ".",
683 "action": ["python", "src/build/landmines.py"], 695 "action": ["python", "src/build/landmines.py"],
684 }, 696 },
685 ] 697 ]
OLDNEW
« no previous file with comments | « no previous file | build/linux/install-debian.wheezy.sysroot.wrapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698