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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 ) | 76 ) |
77 | 77 |
78 # These test files work on *all* platforms; tests that don't work | 78 # These test files work on *all* platforms; tests that don't work |
79 # cross-platform live below. | 79 # cross-platform live below. |
80 input_files = [ | 80 input_files = [ |
81 'at_exit_unittest.cc', | 81 'at_exit_unittest.cc', |
82 'atomicops_unittest.cc', | 82 'atomicops_unittest.cc', |
83 'clipboard_unittest.cc', | 83 'clipboard_unittest.cc', |
84 'command_line_unittest.cc', | 84 'command_line_unittest.cc', |
85 'condition_variable_unittest.cc', | 85 'condition_variable_unittest.cc', |
| 86 'field_trial_unittest.cc', |
86 'file_path_unittest.cc', | 87 'file_path_unittest.cc', |
87 'file_util_unittest.cc', | 88 'file_util_unittest.cc', |
88 'histogram_unittest.cc', | 89 'histogram_unittest.cc', |
89 'hmac_unittest.cc', | 90 'hmac_unittest.cc', |
90 'idletimer_unittest.cc', | 91 'idletimer_unittest.cc', |
91 'json_reader_unittest.cc', | 92 'json_reader_unittest.cc', |
92 'json_writer_unittest.cc', | 93 'json_writer_unittest.cc', |
93 'lazy_instance_unittest.cc', | 94 'lazy_instance_unittest.cc', |
94 'linked_ptr_unittest.cc', | 95 'linked_ptr_unittest.cc', |
95 'message_loop_unittest.cc', | 96 'message_loop_unittest.cc', |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 | 191 |
191 env.Alias('base', installed_base_unittests) | 192 env.Alias('base', installed_base_unittests) |
192 | 193 |
193 # TODO(sgk) should this be moved into base.lib like everything else? This will | 194 # TODO(sgk) should this be moved into base.lib like everything else? This will |
194 # require updating a bunch of other SConscripts which link directly against | 195 # require updating a bunch of other SConscripts which link directly against |
195 # this generated object file. | 196 # this generated object file. |
196 env.StaticObject('perftimer.cc') | 197 env.StaticObject('perftimer.cc') |
197 | 198 |
198 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 199 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
199 env.StaticObject('run_all_perftests.cc') | 200 env.StaticObject('run_all_perftests.cc') |
OLD | NEW |