| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 __doc__ = """ | 5 __doc__ = """ |
| 6 Configuration for building base_unittests{,.exe}. | 6 Configuration for building base_unittests{,.exe}. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'worker_pool_unittest.cc', | 100 'worker_pool_unittest.cc', |
| 101 | 101 |
| 102 'gfx/convolver_unittest.cc', | 102 'gfx/convolver_unittest.cc', |
| 103 'gfx/image_operations_unittest.cc', | 103 'gfx/image_operations_unittest.cc', |
| 104 'gfx/native_theme_unittest.cc', | 104 'gfx/native_theme_unittest.cc', |
| 105 'gfx/png_codec_unittest.cc', | 105 'gfx/png_codec_unittest.cc', |
| 106 'gfx/rect_unittest.cc', | 106 'gfx/rect_unittest.cc', |
| 107 ] | 107 ] |
| 108 | 108 |
| 109 if env['PLATFORM'] in ('posix', 'darwin'): | 109 if env['PLATFORM'] in ('posix', 'darwin'): |
| 110 #env.ChromeTestProgram('debug_message', ['debug_message.cc']) | |
| 111 | |
| 112 # Remove files that still need to be ported from the input_files list. | 110 # Remove files that still need to be ported from the input_files list. |
| 113 # TODO(port): delete files from this list as they get ported. | 111 # TODO(port): delete files from this list as they get ported. |
| 114 to_be_ported_files = [ | 112 to_be_ported_files = [ |
| 115 # We have an implementation of idle_timer, but it's unclear if we want it | 113 # We have an implementation of idle_timer, but it's unclear if we want it |
| 116 # yet, so it's commented out for now. Leave this 'unported'. | 114 # yet, so it's commented out for now. Leave this 'unported'. |
| 117 'idletimer_unittest.cc', | 115 'idletimer_unittest.cc', |
| 118 | 116 |
| 119 'watchdog_unittest.cc', | 117 'watchdog_unittest.cc', |
| 120 'gfx/native_theme_unittest.cc', | 118 'gfx/native_theme_unittest.cc', |
| 121 ] | 119 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 152 |
| 155 env.ChromeTestProgram('base_unittests', input_files) | 153 env.ChromeTestProgram('base_unittests', input_files) |
| 156 | 154 |
| 157 # TODO(sgk) should this be moved into base.lib like everything else? This will | 155 # TODO(sgk) should this be moved into base.lib like everything else? This will |
| 158 # require updating a bunch of other SConscripts which link directly against | 156 # require updating a bunch of other SConscripts which link directly against |
| 159 # this generated object file. | 157 # this generated object file. |
| 160 env.StaticObject('perftimer.cc') | 158 env.StaticObject('perftimer.cc') |
| 161 | 159 |
| 162 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 160 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
| 163 env.StaticObject('run_all_perftests.cc') | 161 env.StaticObject('run_all_perftests.cc') |
| OLD | NEW |