summaryrefslogtreecommitdiffstats
path: root/webkit/SConscript.port
diff options
context:
space:
mode:
authorbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-19 18:52:38 +0000
committerbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-19 18:52:38 +0000
commit6165b4070b7e3a2fd33efd0eb66043c86f61d8b2 (patch)
treed2f7f195c13274ca524d264dc34639e276805325 /webkit/SConscript.port
parent941ac7fca4afc89cb28ffa760f5a4a4ca077912c (diff)
downloadchromium_src-6165b4070b7e3a2fd33efd0eb66043c86f61d8b2.zip
chromium_src-6165b4070b7e3a2fd33efd0eb66043c86f61d8b2.tar.gz
chromium_src-6165b4070b7e3a2fd33efd0eb66043c86f61d8b2.tar.bz2
Move PlatformCanvas and PlatformDevice from base/gfx to webkit/port. I left header files in the original locations that include the ones in the new location so I don't have to change all the includes in Chrome at once. These will be removed later.
I kept the names, indenting, and the namespaces the same for now. I will also be cleaning this up in separate passes. Review URL: http://codereview.chromium.org/11244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5690 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/SConscript.port')
-rw-r--r--webkit/SConscript.port12
1 files changed, 12 insertions, 0 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port
index 7e0d5ca..bb7fa95 100644
--- a/webkit/SConscript.port
+++ b/webkit/SConscript.port
@@ -131,6 +131,9 @@ if env['PLATFORM'] == 'posix':
'$PORT_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp',
'$PORT_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
'$PORT_DIR/platform/graphics/skia/GdkSkia.cc',
+
+ '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasLinux.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceLinux.cpp',
])
if env['PLATFORM'] == 'darwin':
@@ -145,6 +148,9 @@ if env['PLATFORM'] == 'darwin':
'$PORT_DIR/platform/chromium/ScrollbarThemeChromium.cpp',
'$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp',
'$PORT_DIR/platform/graphics/ImageSkia.cpp',
+
+ '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasMac.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceMac.cpp',
]
for remove in remove_files:
input_files.remove(remove)
@@ -166,6 +172,12 @@ if env['PLATFORM'] == 'win32':
'$PORT_DIR/platform/graphics/ThemeHelperWin.cpp',
'$PORT_DIR/platform/graphics/UniscribeHelper.cpp',
'$PORT_DIR/platform/graphics/UniscribeHelperTextRun.cpp',
+
+ '$PORT_DIR/platform/graphics/skia/public/PlatformCanvasWin.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/PlatformDeviceWin.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/VectorCanvas.cpp',
+ '$PORT_DIR/platform/graphics/skia/public/VectorDevice.cpp',
+
'$PORT_DIR/rendering/RenderThemeWin.cpp',
])