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

Side by Side Diff: DEPS

Issue 11316232: Remove unused option from download_nacl_toolchain.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | no next file » | 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 587
588 hooks = [ 588 hooks = [
589 { 589 {
590 # This downloads binaries for Native Client's newlib toolchain. 590 # This downloads binaries for Native Client's newlib toolchain.
591 # Done in lieu of building the toolchain from scratch as it can take 591 # Done in lieu of building the toolchain from scratch as it can take
592 # anywhere from 30 minutes to 4 hours depending on platform to build. 592 # anywhere from 30 minutes to 4 hours depending on platform to build.
593 "pattern": ".", 593 "pattern": ".",
594 "action": [ 594 "action": [
595 "python", "src/build/download_nacl_toolchains.py", 595 "python", "src/build/download_nacl_toolchains.py",
596 "--no-arm-trusted", 596 "--no-arm-trusted",
597 "--save-downloads-dir",
598 "src/native_client_sdk/src/build_tools/toolchain_archives",
599 "--keep", 597 "--keep",
600 ], 598 ],
601 }, 599 },
602 { 600 {
603 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes 601 # Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
604 # zero seconds to run. If something changed, it downloads a prebuilt clang, 602 # zero seconds to run. If something changed, it downloads a prebuilt clang,
605 # which takes ~20s, but clang speeds up builds by more than 20s. 603 # which takes ~20s, but clang speeds up builds by more than 20s.
606 "pattern": ".", 604 "pattern": ".",
607 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 605 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
608 }, 606 },
(...skipping 13 matching lines...) Expand all
622 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 620 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
623 "pattern": ".", 621 "pattern": ".",
624 "action": ["python", "src/build/gyp_chromium"], 622 "action": ["python", "src/build/gyp_chromium"],
625 }, 623 },
626 { 624 {
627 # Check for landmines (reasons to clobber the build). 625 # Check for landmines (reasons to clobber the build).
628 "pattern": ".", 626 "pattern": ".",
629 "action": ["python", "src/build/landmines.py"], 627 "action": ["python", "src/build/landmines.py"],
630 }, 628 },
631 ] 629 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698