diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 11:50:47 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 11:50:47 +0000 |
commit | 7b8354fbd8242088ba9c32d0d592fd9ca9a667ec (patch) | |
tree | eeb1952cc7b4c9ca3e9c34307fd83894246a5c69 | |
parent | 4092b1ab669b1ca775f533c21b70dea1b4bf4a9e (diff) | |
download | chromium_src-7b8354fbd8242088ba9c32d0d592fd9ca9a667ec.zip chromium_src-7b8354fbd8242088ba9c32d0d592fd9ca9a667ec.tar.gz chromium_src-7b8354fbd8242088ba9c32d0d592fd9ca9a667ec.tar.bz2 |
Build Linux against base_gfx, and we pass convolver and rect unit tests.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@790 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/SConscript | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/base/SConscript b/base/SConscript index 87966d1..1c18d47 100644 --- a/base/SConscript +++ b/base/SConscript @@ -231,7 +231,6 @@ if env['PLATFORM'] == 'win32': if env['PLATFORM'] == 'posix': # Remove the libraries that don't build yet under Linux. - env_tests['LIBS'].remove('base_gfx') env_tests['LIBS'].remove('skia') env_tests['LIBS'].remove('libpng') env_tests['LIBS'].remove('zlib') @@ -256,6 +255,8 @@ test_files = [ 'string_piece_unittest.cc', 'string_tokenizer_unittest.cc', 'values_unittest.cc', + 'gfx/convolver_unittest.cc', + 'gfx/rect_unittest.cc', ] if env['PLATFORM'] == 'win32': @@ -267,14 +268,6 @@ if env['PLATFORM'] == 'win32': 'command_line_unittest.cc', 'condition_variable_test.cc', 'file_util_unittest.cc', - 'gfx/convolver_unittest.cc', - 'gfx/image_operations_unittest.cc', - 'gfx/native_theme_unittest.cc', - 'gfx/platform_canvas_unittest.cc', - 'gfx/png_codec_unittest.cc', - 'gfx/rect_unittest.cc', - 'gfx/uniscribe_unittest.cc', - 'gfx/vector_canvas_unittest.cc', 'idletimer_unittest.cc', 'hmac_unittest.cc', 'message_loop_unittest.cc', @@ -298,6 +291,12 @@ if env['PLATFORM'] == 'win32': 'tracked_objects_test.cc', 'waitable_event_unittest.cc', 'word_iterator_unittest.cc', + 'gfx/image_operations_unittest.cc', + 'gfx/native_theme_unittest.cc', + 'gfx/platform_canvas_unittest.cc', + 'gfx/png_codec_unittest.cc', + 'gfx/uniscribe_unittest.cc', + 'gfx/vector_canvas_unittest.cc', ]) test_targets = [ 'base_unittests' ] |