| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'shared_memory_unittest.cc', | 106 'shared_memory_unittest.cc', |
| 107 'simple_thread_unittest.cc', | 107 'simple_thread_unittest.cc', |
| 108 'singleton_unittest.cc', | 108 'singleton_unittest.cc', |
| 109 'stack_container_unittest.cc', | 109 'stack_container_unittest.cc', |
| 110 'stats_table_unittest.cc', | 110 'stats_table_unittest.cc', |
| 111 'string_escape_unittest.cc', | 111 'string_escape_unittest.cc', |
| 112 'string_piece_unittest.cc', | 112 'string_piece_unittest.cc', |
| 113 'string_tokenizer_unittest.cc', | 113 'string_tokenizer_unittest.cc', |
| 114 'string_util_unittest.cc', | 114 'string_util_unittest.cc', |
| 115 'sys_info_unittest.cc', | 115 'sys_info_unittest.cc', |
| 116 'thread_collision_warner_unittest.cc', |
| 116 'thread_local_storage_unittest.cc', | 117 'thread_local_storage_unittest.cc', |
| 117 'thread_local_unittest.cc', | 118 'thread_local_unittest.cc', |
| 118 'thread_unittest.cc', | 119 'thread_unittest.cc', |
| 119 'time_unittest.cc', | 120 'time_unittest.cc', |
| 120 'timer_unittest.cc', | 121 'timer_unittest.cc', |
| 121 'tracked_objects_unittest.cc', | 122 'tracked_objects_unittest.cc', |
| 122 'tuple_unittest.cc', | 123 'tuple_unittest.cc', |
| 123 'values_unittest.cc', | 124 'values_unittest.cc', |
| 124 'waitable_event_unittest.cc', | 125 'waitable_event_unittest.cc', |
| 125 'watchdog_unittest.cc', | 126 'watchdog_unittest.cc', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 190 |
| 190 env.Alias('base', installed_base_unittests) | 191 env.Alias('base', installed_base_unittests) |
| 191 | 192 |
| 192 # TODO(sgk) should this be moved into base.lib like everything else? This will | 193 # TODO(sgk) should this be moved into base.lib like everything else? This will |
| 193 # require updating a bunch of other SConscripts which link directly against | 194 # require updating a bunch of other SConscripts which link directly against |
| 194 # this generated object file. | 195 # this generated object file. |
| 195 env.StaticObject('perftimer.cc') | 196 env.StaticObject('perftimer.cc') |
| 196 | 197 |
| 197 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 198 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
| 198 env.StaticObject('run_all_perftests.cc') | 199 env.StaticObject('run_all_perftests.cc') |
| OLD | NEW |