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

Unified Diff: gclient.py

Issue 10689194: Enable back parallel sync on cygwin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index 30bad034d775d8bfb1b5e67d30e0dc92c65a1534..9d920f91bb4dec729ab275ee4479941de8040eb7 100644
--- a/gclient.py
+++ b/gclient.py
@@ -1515,8 +1515,8 @@ def GenUsage(parser, command):
def Parser():
"""Returns the default parser."""
parser = optparse.OptionParser(version='%prog ' + __version__)
- # cygwin and some arm boards have issues with parallel sync.
- if sys.platform == 'cygwin' or platform.machine().startswith('arm'):
+ # some arm boards have issues with parallel sync.
+ if platform.machine().startswith('arm'):
jobs = 1
else:
jobs = 8
« 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