Index: gyp/common.gypi |
=================================================================== |
--- gyp/common.gypi (revision 9502) |
+++ gyp/common.gypi (working copy) |
@@ -37,6 +37,12 @@ |
[ 'skia_os == "nacl" and OS != "linux"', { |
'error': '<!(Skia NaCl build only currently supported on Linux.)', |
}], |
+ [ 'skia_os == "chromeos" and OS != "linux"', { |
+ 'error': '<!(Skia ChromeOS build is only supported on Linux.)', |
+ }], |
+ [ 'skia_os == "chromeos" and not skia_cros_target', { |
+ 'error': '<!(skia_cros_target must be defined for ChromeOS)', |
+ }], |
borenet
2013/06/11 13:25:43
I added these checks, but none of these seem to ac
|
], |
}, |
# Validate the 'skia_os' setting against 'skia_shared_lib', because shared |