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

Unified Diff: gyp_skia

Issue 317903002: Change default generators on windows to include msvs-ninja rather than msvs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | 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 66adf08cb90b465b680533857a6acb71910d665c..435e61c18a9791d268fcf54514b2b776f3b09b41 100755
--- a/gyp_skia
+++ b/gyp_skia
@@ -84,9 +84,9 @@ if __name__ == '__main__':
if sys.platform.startswith('darwin'):
default_gyp_generators = 'ninja,xcode'
elif sys.platform.startswith('win'):
- default_gyp_generators = 'ninja,msvs'
+ default_gyp_generators = 'ninja,msvs-ninja'
elif sys.platform.startswith('cygwin'):
- default_gyp_generators = 'ninja,msvs'
+ default_gyp_generators = 'ninja,msvs-ninja'
else:
default_gyp_generators = 'ninja'
os.environ[ENVVAR_GYP_GENERATORS] = default_gyp_generators
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698