Chromium Code Reviews| 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): |