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

Unified Diff: tools/gn.py

Issue 2859833003: [infra] Prepare gn.py for update to GN binary (Closed)
Patch Set: Created 3 years, 8 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: tools/gn.py
diff --git a/tools/gn.py b/tools/gn.py
index b30d7744a9f73e36183d3aad4608d10b7e132334..3f4345ef1729d8275547ae7383e34f120c2ffb63 100755
--- a/tools/gn.py
+++ b/tools/gn.py
@@ -367,7 +367,8 @@ def parse_args(args):
type=int,
help='Number of simultaneous GN invocations',
dest='workers',
- default=multiprocessing.cpu_count())
+ # Set to multiprocessing.cpu_count() when GN can be run in parallel.
+ default=1)
options = parser.parse_args(args)
if not process_options(options):
« 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