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

Unified Diff: skia/skia.gyp

Issue 9722032: aura: Use platform independent skia::PlatformCanvas when possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use platform independent PlatformCanvas when use_aura=1 Created 8 years, 9 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: skia/skia.gyp
diff --git a/skia/skia.gyp b/skia/skia.gyp
index 82ababb4353b3b451a75c3300fa13e06d1cd7766..5f67d24e6b34d4ec1658d8626bedac25a3edf226 100644
--- a/skia/skia.gyp
+++ b/skia/skia.gyp
@@ -712,6 +712,7 @@
'ext/platform_canvas.h',
'ext/platform_canvas_linux.cc',
'ext/platform_canvas_mac.cc',
+ 'ext/platform_canvas_skia.cc',
'ext/platform_canvas_win.cc',
'ext/platform_device.cc',
'ext/platform_device.h',
@@ -855,6 +856,14 @@
['include', 'ext/platform_canvas_linux\\.cc$'],
],
}],
+ [ 'use_aura == 1', {
+ 'sources/': [
+ ['exclude', 'ext/platform_canvas_mac\\.cc$'],
+ ['exclude', 'ext/platform_canvas_linux\\.cc$'],
+ ['exclude', 'ext/platform_canvas_win\\.cc$'],
+ ['include', 'ext/platform_canvas_skia\\.cc$'],
piman 2012/03/21 16:54:19 Unless I missed something, this will compile and l
+ ],
+ }],
[ 'toolkit_uses_gtk == 1', {
'dependencies': [
'../build/linux/system.gyp:gdk',
« no previous file with comments | « skia/ext/platform_canvas_skia.cc ('k') | ui/gfx/compositor/compositor.cc » ('j') | ui/ui.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698