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

Side by Side Diff: DEPS

Issue 11468014: Download arm sysroot as part of gclient hooks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 8 years 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/install-build-deps.sh » ('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://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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 # Done in lieu of building the toolchain from scratch as it can take 616 # Done in lieu of building the toolchain from scratch as it can take
617 # anywhere from 30 minutes to 4 hours depending on platform to build. 617 # anywhere from 30 minutes to 4 hours depending on platform to build.
618 "pattern": ".", 618 "pattern": ".",
619 "action": [ 619 "action": [
620 "python", "src/build/download_nacl_toolchains.py", 620 "python", "src/build/download_nacl_toolchains.py",
621 "--no-arm-trusted", 621 "--no-arm-trusted",
622 "--keep", 622 "--keep",
623 ], 623 ],
624 }, 624 },
625 { 625 {
626 # Download arm sysroot image to src/arm-sysroot. This image updates
627 # at about the same rate that the chrome build deps change.
628 # This script is a no-op except for linux users who have
629 # target_arch=arm in thier GYP_DEFINES.
630 "pattern": ".",
631 "action": ["python", "src/build/linux/install-arm-sysroot.py",
632 "--linux-only"],
633 },
634 {
626 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes 635 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
627 # zero seconds to run. If something changed, it downloads a prebuilt clang, 636 # zero seconds to run. If something changed, it downloads a prebuilt clang,
628 # which takes ~20s, but clang speeds up builds by more than 20s. 637 # which takes ~20s, but clang speeds up builds by more than 20s.
629 "pattern": ".", 638 "pattern": ".",
630 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 639 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
631 }, 640 },
632 { 641 {
633 # Update the cygwin mount on Windows. 642 # Update the cygwin mount on Windows.
634 "pattern": ".", 643 "pattern": ".",
635 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"], 644 "action": ["python", "src/build/win/setup_cygwin_mount.py", "--win-only"],
636 }, 645 },
637 { 646 {
638 # Update LASTCHANGE. This is also run by export_tarball.py in 647 # Update LASTCHANGE. This is also run by export_tarball.py in
639 # src/tools/export_tarball - please keep them in sync. 648 # src/tools/export_tarball - please keep them in sync.
640 "pattern": ".", 649 "pattern": ".",
641 "action": ["python", "src/build/util/lastchange.py", 650 "action": ["python", "src/build/util/lastchange.py",
642 "-o", "src/build/util/LASTCHANGE"], 651 "-o", "src/build/util/LASTCHANGE"],
643 }, 652 },
644 { 653 {
645 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 654 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
646 "pattern": ".", 655 "pattern": ".",
647 "action": ["python", "src/build/gyp_chromium"], 656 "action": ["python", "src/build/gyp_chromium"],
648 }, 657 },
649 { 658 {
650 # Check for landmines (reasons to clobber the build). 659 # Check for landmines (reasons to clobber the build).
651 "pattern": ".", 660 "pattern": ".",
652 "action": ["python", "src/build/landmines.py"], 661 "action": ["python", "src/build/landmines.py"],
653 }, 662 },
654 ] 663 ]
OLDNEW
« no previous file with comments | « no previous file | build/install-build-deps.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698