summaryrefslogtreecommitdiffstats
path: root/base/gfx/base_gfx.scons
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 /base/gfx/base_gfx.scons
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 'base/gfx/base_gfx.scons')
-rw-r--r--base/gfx/base_gfx.scons10
1 files changed, 0 insertions, 10 deletions
diff --git a/base/gfx/base_gfx.scons b/base/gfx/base_gfx.scons
index 748f13b..0af67c6 100644
--- a/base/gfx/base_gfx.scons
+++ b/base/gfx/base_gfx.scons
@@ -42,8 +42,6 @@ input_files = [
'rect.cc',
'size.cc',
'skia_utils.cc',
- 'vector_canvas.cc',
- 'vector_device.cc',
]
if env['PLATFORM'] in ('posix', 'darwin'):
@@ -53,23 +51,15 @@ if env['PLATFORM'] in ('posix', 'darwin'):
'gdi_util.cc',
'native_theme.cc',
'skia_utils.cc',
- 'vector_canvas.cc',
- 'vector_device.cc',
]
for remove in to_be_ported_files:
input_files.remove(remove)
if env['PLATFORM'] == 'win32':
input_files.extend([
- 'bitmap_platform_device_win.cc',
- 'platform_canvas_win.cc',
- 'platform_device_win.cc',
])
elif env['PLATFORM'] == 'posix':
input_files.extend([
- 'bitmap_platform_device_linux.cc',
- 'platform_canvas_linux.cc',
- 'platform_device_linux.cc',
])
env.ChromeStaticLibrary('base_gfx', input_files)