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

Unified Diff: build/landmines.py

Issue 14322014: Support ninja flavor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased AUTHORS Created 7 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 | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/landmines.py
diff --git a/build/landmines.py b/build/landmines.py
index 981d2dfdac967296c5c80619b2e0868407cc36f4..7061ed58b574ab7162907ec17e8e48d92a4b4c9e 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -110,6 +110,8 @@ def builder():
generator = os.environ['GYP_GENERATORS'].split(',')[0]
if generator.endswith('-android'):
return generator.split('-')[0]
+ elif generator.endswith('-ninja'):
+ return 'ninja'
else:
return generator
else:
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698