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

Unified Diff: gyp/common.gypi

Issue 16099011: GYP changes and scripts for compiling Skia for ChromeOS (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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
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

Powered by Google App Engine
This is Rietveld 408576698