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

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

Powered by Google App Engine
This is Rietveld 408576698