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