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

Unified Diff: gyp_skia

Issue 18467010: Allow use of SKIA_OUT on Windows (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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
===================================================================
--- gyp_skia (revision 9919)
+++ gyp_skia (working copy)
@@ -62,12 +62,10 @@
if not output_dir:
return os.path.join(os.path.abspath(script_dir), 'out')
- if (os.name != 'posix' or
- (sys.platform.startswith('darwin') and
+ if (sys.platform.startswith('darwin') and
(not os.getenv('GYP_GENERATORS') or
- 'make' not in os.getenv('GYP_GENERATORS')))):
- print 'ERROR: variable SKIA_OUT is not valid on Mac (using xcodebuild)' \
- ' or Windows'
+ 'make' not in os.getenv('GYP_GENERATORS'))):
+ print 'ERROR: variable SKIA_OUT is not valid on Mac (using xcodebuild)'
sys.exit(-1);
if os.path.isabs(output_dir):
« 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