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

Side by Side 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: Consistently check return value of PlatformCanvas::initialize. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/ext/platform_canvas_skia.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 10 'variables': {
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 'ext/convolver.cc', 705 'ext/convolver.cc',
706 'ext/convolver.h', 706 'ext/convolver.h',
707 'ext/google_logging.cc', 707 'ext/google_logging.cc',
708 'ext/image_operations.cc', 708 'ext/image_operations.cc',
709 'ext/image_operations.h', 709 'ext/image_operations.h',
710 'ext/SkThread_chrome.cc', 710 'ext/SkThread_chrome.cc',
711 'ext/platform_canvas.cc', 711 'ext/platform_canvas.cc',
712 'ext/platform_canvas.h', 712 'ext/platform_canvas.h',
713 'ext/platform_canvas_linux.cc', 713 'ext/platform_canvas_linux.cc',
714 'ext/platform_canvas_mac.cc', 714 'ext/platform_canvas_mac.cc',
715 'ext/platform_canvas_skia.cc',
715 'ext/platform_canvas_win.cc', 716 'ext/platform_canvas_win.cc',
716 'ext/platform_device.cc', 717 'ext/platform_device.cc',
717 'ext/platform_device.h', 718 'ext/platform_device.h',
718 'ext/platform_device_linux.cc', 719 'ext/platform_device_linux.cc',
719 'ext/platform_device_mac.cc', 720 'ext/platform_device_mac.cc',
720 'ext/platform_device_win.cc', 721 'ext/platform_device_win.cc',
721 'ext/SkMemory_new_handler.cpp', 722 'ext/SkMemory_new_handler.cpp',
722 'ext/skia_sandbox_support_win.h', 723 'ext/skia_sandbox_support_win.h',
723 'ext/skia_sandbox_support_win.cc', 724 'ext/skia_sandbox_support_win.cc',
724 'ext/skia_utils_mac.mm', 725 'ext/skia_utils_mac.mm',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 '../third_party/skia/src/ports/SkFontHost_tables.cpp', 849 '../third_party/skia/src/ports/SkFontHost_tables.cpp',
849 ], 850 ],
850 }], 851 }],
851 [ 'OS == "android"', { 852 [ 'OS == "android"', {
852 'sources/': [ 853 'sources/': [
853 ['exclude', '_linux\\.(cc|cpp)$'], 854 ['exclude', '_linux\\.(cc|cpp)$'],
854 ['include', 'ext/platform_device_linux\\.cc$'], 855 ['include', 'ext/platform_device_linux\\.cc$'],
855 ['include', 'ext/platform_canvas_linux\\.cc$'], 856 ['include', 'ext/platform_canvas_linux\\.cc$'],
856 ], 857 ],
857 }], 858 }],
859 [ 'use_aura == 1', {
Alexei Svitkine (slow) 2012/03/21 21:23:59 Maybe make this 'use_aura == 1 && use_canvas_skia
860 'sources/': [
861 ['exclude', 'ext/platform_canvas_mac\\.cc$'],
862 ['exclude', 'ext/platform_canvas_linux\\.cc$'],
863 ['exclude', 'ext/platform_canvas_win\\.cc$'],
864 ],
865 }, { # use_aura == 0
866 'sources/': [ ['exclude', 'ext/platform_canvas_skia\\.cc$'] ],
867 }],
858 [ 'toolkit_uses_gtk == 1', { 868 [ 'toolkit_uses_gtk == 1', {
859 'dependencies': [ 869 'dependencies': [
860 '../build/linux/system.gyp:gdk', 870 '../build/linux/system.gyp:gdk',
861 ], 871 ],
862 }, { # toolkit_uses_gtk == 0 872 }, { # toolkit_uses_gtk == 0
863 'sources/': [ ['exclude', '_gtk\\.(cc|cpp)$'] ], 873 'sources/': [ ['exclude', '_gtk\\.(cc|cpp)$'] ],
864 }], 874 }],
865 [ 'OS == "android"', { 875 [ 'OS == "android"', {
866 'defines': [ 876 'defines': [
867 'SK_BUILD_FOR_ANDROID_NDK', 877 'SK_BUILD_FOR_ANDROID_NDK',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 ], 1250 ],
1241 'include_dirs': [ 1251 'include_dirs': [
1242 '..', 1252 '..',
1243 ], 1253 ],
1244 'sources': [ 1254 'sources': [
1245 'ext/image_operations_bench.cc', 1255 'ext/image_operations_bench.cc',
1246 ], 1256 ],
1247 }, 1257 },
1248 ], 1258 ],
1249 } 1259 }
OLDNEW
« no previous file with comments | « skia/ext/platform_canvas_skia.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698