diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-11 19:19:19 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-11 19:19:19 +0000 |
commit | d7af8e7d98ab79ad46707b08b6dd7f6ef272cbbe (patch) | |
tree | afd72795ba73b8b88e60371f2b1b7959cf227e12 /webkit/SConscript.port | |
parent | 3975e6e094b6557215748d91c89394cb54532c23 (diff) | |
download | chromium_src-d7af8e7d98ab79ad46707b08b6dd7f6ef272cbbe.zip chromium_src-d7af8e7d98ab79ad46707b08b6dd7f6ef272cbbe.tar.gz chromium_src-d7af8e7d98ab79ad46707b08b6dd7f6ef272cbbe.tar.bz2 |
Cache the GdkSkia object in PlatformContextSkia so that we aren't creating
and deleting them for every widget drawn.
Review URL: http://codereview.chromium.org/9757
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5195 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/SConscript.port')
-rw-r--r-- | webkit/SConscript.port | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port index 7f4d01b..312a713 100644 --- a/webkit/SConscript.port +++ b/webkit/SConscript.port @@ -124,10 +124,11 @@ if env['PLATFORM'] == 'posix': # Linux specific implementations input_files.extend([ - '$PORT_DIR/platform/chromium/ScreenLinux.cpp', '$PORT_DIR/platform/chromium/IconLinux.cpp', - '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', '$PORT_DIR/platform/chromium/PasteboardLinux.cpp', + '$PORT_DIR/platform/chromium/ScreenLinux.cpp', + '$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', + '$PORT_DIR/platform/graphics/skia/GdkSkia.cc', ]) if env['PLATFORM'] == 'darwin': @@ -175,7 +176,6 @@ if env['PLATFORM'] == 'posix': '$PORT_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', '$PORT_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', '$PORT_DIR/platform/chromium/gtk2drawing.c', - '$PORT_DIR/platform/chromium/gdkskiadrawable.cc', '$PORT_DIR/platform/chromium/RenderThemeGtk.cpp' ]) |