diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 19:45:07 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 19:45:07 +0000 |
commit | b880b1feb398ed0de47d355a0ee330c1f4cb89a8 (patch) | |
tree | c5c16264eb7df852b35c4058da39e1a46ad91f49 /base/gfx | |
parent | 6e93e526a35e8001a0ec46cc60e9230863be289c (diff) | |
download | chromium_src-b880b1feb398ed0de47d355a0ee330c1f4cb89a8.zip chromium_src-b880b1feb398ed0de47d355a0ee330c1f4cb89a8.tar.gz chromium_src-b880b1feb398ed0de47d355a0ee330c1f4cb89a8.tar.bz2 |
Add skia and our png wrappers. png_codec_unittest and image_operations_unittest pass. This gives us 70 passing unittests.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@878 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/gfx')
-rw-r--r-- | base/gfx/SConscript | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/base/gfx/SConscript b/base/gfx/SConscript index 40e6d51..37939f8 100644 --- a/base/gfx/SConscript +++ b/base/gfx/SConscript @@ -63,10 +63,13 @@ if env['PLATFORM'] == 'win32': ) input_files = [ - 'convolver.cc', - 'point.cc', - 'rect.cc', - 'size.cc', + 'convolver.cc', + 'image_operations.cc', + 'png_decoder.cc', + 'png_encoder.cc', + 'point.cc', + 'rect.cc', + 'size.cc', ] if env['PLATFORM'] == 'win32': @@ -75,10 +78,7 @@ if env['PLATFORM'] == 'win32': input_files.extend([ 'bitmap_header.cc', 'font_utils.cc', - 'image_operations.cc', 'native_theme.cc', - 'png_decoder.cc', - 'png_encoder.cc', 'skia_utils.cc', 'uniscribe.cc', 'vector_canvas.cc', |