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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 env_tests = env.Clone() | 8 env_tests = env.Clone() |
9 | 9 |
10 env.Prepend( | 10 env.Prepend( |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 # These base files work on *all* platforms; files that don't work | 29 # These base files work on *all* platforms; files that don't work |
30 # cross-platform live below. | 30 # cross-platform live below. |
31 input_files = [ | 31 input_files = [ |
32 'at_exit.cc', | 32 'at_exit.cc', |
33 'base_paths.cc', | 33 'base_paths.cc', |
34 'base_switches.cc', | 34 'base_switches.cc', |
35 'bzip2_error_handler.cc', | 35 'bzip2_error_handler.cc', |
36 'command_line.cc', | 36 'command_line.cc', |
37 'debug_util.cc', | 37 'debug_util.cc', |
| 38 'file_path.cc', |
38 'file_util.cc', | 39 'file_util.cc', |
39 'histogram.cc', | 40 'histogram.cc', |
40 'icu_util.cc', | 41 'icu_util.cc', |
41 'json_reader.cc', | 42 'json_reader.cc', |
42 'json_writer.cc', | 43 'json_writer.cc', |
43 'lazy_instance.cc', | 44 'lazy_instance.cc', |
44 'lock.cc', | 45 'lock.cc', |
45 'logging.cc', | 46 'logging.cc', |
46 'md5.cc', | 47 'md5.cc', |
47 'memory_debug.cc', | 48 'memory_debug.cc', |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 ], | 246 ], |
246 ) | 247 ) |
247 | 248 |
248 # These test files work on *all* platforms; tests that don't work | 249 # These test files work on *all* platforms; tests that don't work |
249 # cross-platform live below. | 250 # cross-platform live below. |
250 test_files = [ | 251 test_files = [ |
251 'at_exit_unittest.cc', | 252 'at_exit_unittest.cc', |
252 'atomicops_unittest.cc', | 253 'atomicops_unittest.cc', |
253 'command_line_unittest.cc', | 254 'command_line_unittest.cc', |
254 'condition_variable_unittest.cc', | 255 'condition_variable_unittest.cc', |
| 256 'file_path_unittest.cc', |
255 'file_util_unittest.cc', | 257 'file_util_unittest.cc', |
256 'hmac_unittest.cc', | 258 'hmac_unittest.cc', |
257 'histogram_unittest.cc', | 259 'histogram_unittest.cc', |
258 'json_reader_unittest.cc', | 260 'json_reader_unittest.cc', |
259 'json_writer_unittest.cc', | 261 'json_writer_unittest.cc', |
260 'lazy_instance_unittest.cc', | 262 'lazy_instance_unittest.cc', |
261 'linked_ptr_unittest.cc', | 263 'linked_ptr_unittest.cc', |
262 'message_loop_unittest.cc', | 264 'message_loop_unittest.cc', |
263 'observer_list_unittest.cc', | 265 'observer_list_unittest.cc', |
264 'path_service_unittest.cc', | 266 'path_service_unittest.cc', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 env.Alias('base', ['.', installed_base_unittests]) | 347 env.Alias('base', ['.', installed_base_unittests]) |
346 | 348 |
347 # TODO(sgk) should this be moved into base.lib like everything else? This will | 349 # TODO(sgk) should this be moved into base.lib like everything else? This will |
348 # require updating a bunch of other SConscripts which link directly against | 350 # require updating a bunch of other SConscripts which link directly against |
349 # this generated object file. | 351 # this generated object file. |
350 env_tests.StaticObject('perftimer.cc') | 352 env_tests.StaticObject('perftimer.cc') |
351 | 353 |
352 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 354 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
353 env_tests.StaticObject('run_all_perftests.cc') | 355 env_tests.StaticObject('run_all_perftests.cc') |
354 | 356 |
OLD | NEW |