| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'thread_local_storage_unittest.cc', | 105 'thread_local_storage_unittest.cc', |
| 106 'thread_local_unittest.cc', | 106 'thread_local_unittest.cc', |
| 107 'thread_unittest.cc', | 107 'thread_unittest.cc', |
| 108 'time_unittest.cc', | 108 'time_unittest.cc', |
| 109 'time_unittest_win.cc', | 109 'time_unittest_win.cc', |
| 110 'timer_unittest.cc', | 110 'timer_unittest.cc', |
| 111 'tracked_objects_unittest.cc', | 111 'tracked_objects_unittest.cc', |
| 112 'tuple_unittest.cc', | 112 'tuple_unittest.cc', |
| 113 'values_unittest.cc', | 113 'values_unittest.cc', |
| 114 'waitable_event_unittest.cc', | 114 'waitable_event_unittest.cc', |
| 115 'waitable_event_watcher_unittest.cc', |
| 115 'watchdog_unittest.cc', | 116 'watchdog_unittest.cc', |
| 116 'win_util_unittest.cc', | 117 'win_util_unittest.cc', |
| 117 'wmi_util_unittest.cc', | 118 'wmi_util_unittest.cc', |
| 118 'word_iterator_unittest.cc', | 119 'word_iterator_unittest.cc', |
| 119 ]), | 120 ]), |
| 120 | 121 |
| 121 MSVSFilter('gfx_tests', [ | 122 MSVSFilter('gfx_tests', [ |
| 122 'gfx/png_codec_unittest.cc', | 123 'gfx/png_codec_unittest.cc', |
| 123 ]), | 124 ]), |
| 124 ]) | 125 ]) |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 '$(SolutionDir)../testing/using_gtest.vsprops', | 224 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 224 ]) | 225 ]) |
| 225 | 226 |
| 226 # TODO(sgk) should this be moved into base.lib like everything else? This will | 227 # TODO(sgk) should this be moved into base.lib like everything else? This will |
| 227 # require updating a bunch of other SConscripts which link directly against | 228 # require updating a bunch of other SConscripts which link directly against |
| 228 # this generated object file. | 229 # this generated object file. |
| 229 env.StaticObject('perftimer.cc') | 230 env.StaticObject('perftimer.cc') |
| 230 | 231 |
| 231 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 232 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
| 232 env.StaticObject('run_all_perftests.cc') | 233 env.StaticObject('run_all_perftests.cc') |
| OLD | NEW |