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

Unified Diff: gyp_skia

Issue 206463007: change default build (in "make" wrapper) to ninja on all platforms (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 9 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 | « gyp/common_conditions.gypi ('k') | make.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp_skia
diff --git a/gyp_skia b/gyp_skia
index 1ba6fc78e86360c4dc712e7b55a480899fa5d562..7a4502684f7a1a477fecabe451a55525764f939a 100755
--- a/gyp_skia
+++ b/gyp_skia
@@ -84,13 +84,13 @@ if __name__ == '__main__':
print ('%s environment variable not set, using default' %
ENVVAR_GYP_GENERATORS)
if sys.platform.startswith('darwin'):
- default_gyp_generators = 'xcode'
+ default_gyp_generators = 'ninja,xcode'
elif sys.platform.startswith('win'):
- default_gyp_generators = 'msvs'
+ default_gyp_generators = 'ninja,msvs'
elif sys.platform.startswith('cygwin'):
- default_gyp_generators = 'msvs'
+ default_gyp_generators = 'ninja,msvs'
else:
- default_gyp_generators = 'make'
+ default_gyp_generators = 'ninja'
os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators
print '%s is "%s"' % (ENVVAR_GYP_GENERATORS, os.getenv(ENVVAR_GYP_GENERATORS))
« no previous file with comments | « gyp/common_conditions.gypi ('k') | make.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698