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

Unified Diff: build/landmines.py

Issue 14577007: Gyp changes for ninja iOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: set generator inside mac_build 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 | « build/ios/mac_build.gypi ('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 7061ed58b574ab7162907ec17e8e48d92a4b4c9e..5187b0d39dd8cbb98a207cda8dacf7693b231b96 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -167,7 +167,7 @@ def get_target_build_dir(build_tool, target, is_iphone=False):
target + ('-iphoneos' if is_iphone else ''))
elif build_tool == 'make':
ret = os.path.join(SRC_DIR, 'out', target)
- elif build_tool == 'ninja':
+ elif build_tool in ['ninja', 'ninja-ios']:
ret = os.path.join(SRC_DIR, 'out', target)
elif build_tool in ['msvs', 'vs', 'ib']:
ret = os.path.join(SRC_DIR, 'build', target)
« no previous file with comments | « build/ios/mac_build.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698