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

Unified Diff: mojo/tools/mojob.py

Issue 809583002: GN: add default target. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Deprecate Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/mojob.py
diff --git a/mojo/tools/mojob.py b/mojo/tools/mojob.py
index b773417925963ab144d3309f991b14c43b7bcfcf..2e33c39e5e4669480fd7878882e3225873940688 100755
--- a/mojo/tools/mojob.py
+++ b/mojo/tools/mojob.py
@@ -140,10 +140,9 @@ def build(config):
if exit_code:
return exit_code
- return subprocess.call(['ninja', '-j', '1000', '-l', '100', '-C', out_dir,
- 'root'])
+ return subprocess.call(['ninja', '-j', '1000', '-l', '100', '-C', out_dir])
else:
- return subprocess.call(['ninja', '-C', out_dir, 'root'])
+ return subprocess.call(['ninja', '-C', out_dir])
def _run_tests(config, test_types):
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698