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

Side by Side Diff: DEPS

Issue 15059002: Convert build/linux/install-debian.wheezy.sysroot.wrapper.sh to python for Windows compatibility. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove unused variable Created 7 years, 7 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
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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698