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

Unified Diff: gyp/gpu.gyp

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/gpu.gyp
===================================================================
--- gyp/gpu.gyp (revision 9502)
+++ gyp/gpu.gyp (working copy)
@@ -9,7 +9,7 @@
'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
],
}],
- ['skia_os != "linux"', {
+ ['skia_os != "linux" and skia_os != "chromeos"', {
'sources/': [ ['exclude', '_unix.(h|cpp)$'],
],
}],
@@ -35,7 +35,7 @@
'GR_MAC_BUILD=1',
],
}],
- [ 'skia_os == "linux"', {
+ [ 'skia_os == "linux" or skia_os == "chromeos"', {
'defines': [
'GR_LINUX_BUILD=1',
],
@@ -232,7 +232,7 @@
'GR_ANDROID_PATH_RENDERING=1',
],
}],
- [ 'skia_os == "linux"', {
+ [ 'skia_os == "linux" or skia_os == "chromeos"', {
'sources!': [
'../src/gpu/gl/GrGLDefaultInterface_none.cpp',
'../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',

Powered by Google App Engine
This is Rietveld 408576698