diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 18:08:31 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 18:08:31 +0000 |
commit | 69892602906531a9df5fc2005215816b3e67ab0e (patch) | |
tree | 5753c74d7ca77187ecbbb007a1512eb38e2394d7 /base/gfx | |
parent | 9c33a8885fa05cb0fe9b21318c0c6505c9c0fab2 (diff) | |
download | chromium_src-69892602906531a9df5fc2005215816b3e67ab0e.zip chromium_src-69892602906531a9df5fc2005215816b3e67ab0e.tar.gz chromium_src-69892602906531a9df5fc2005215816b3e67ab0e.tar.bz2 |
SCons build accommodation of renaming base\gfx\*platform*.cc to base\gfx\*platform*_win.cc.
TBR: awalker
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/gfx')
-rw-r--r-- | base/gfx/SConscript | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/base/gfx/SConscript b/base/gfx/SConscript index 493cbbb..40e6d51 100644 --- a/base/gfx/SConscript +++ b/base/gfx/SConscript @@ -74,12 +74,9 @@ if env['PLATFORM'] == 'win32': # we have the port versions working. input_files.extend([ 'bitmap_header.cc', - 'bitmap_platform_device.cc', 'font_utils.cc', 'image_operations.cc', 'native_theme.cc', - 'platform_canvas.cc', - 'platform_device.cc', 'png_decoder.cc', 'png_encoder.cc', 'skia_utils.cc', @@ -88,4 +85,12 @@ if env['PLATFORM'] == 'win32': 'vector_device.cc', ]) +if env['PLATFORM'] == 'win32': + input_files.extend([ + 'bitmap_platform_device_win.cc', + 'platform_canvas_win.cc', + 'platform_device_win.cc', + + ]) + env.ChromeStaticLibrary('base_gfx', input_files) |