From c94667420a09020f0a810c069cdf899ce60ed2e7 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Wed, 3 May 2017 15:23:38 -0700 Subject: [PATCH] [infra] Prepare gn.py for update to GN binary First part in attempt to reland https://codereview.chromium.org/2854583002/ in two parts. If the second part fails, this part does not need to be reverted. Review-Url: https://codereview.chromium.org/2859833003 . --- tools/gn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/gn.py b/tools/gn.py index b30d7744a9f..3f4345ef172 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):