| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 input_files = ChromeFileList([ | 44 input_files = ChromeFileList([ |
| 45 # TODO(sgk): | 45 # TODO(sgk): |
| 46 # We're deliberately mis-indenting the MSVSFilter() calls here | 46 # We're deliberately mis-indenting the MSVSFilter() calls here |
| 47 # so we don't have to re-indent the file name entries when the | 47 # so we don't have to re-indent the file name entries when the |
| 48 # MSVSFilter() calls go away in (favor of automated generation | 48 # MSVSFilter() calls go away in (favor of automated generation |
| 49 # of the heirarchy). | 49 # of the heirarchy). |
| 50 MSVSFilter('support', [ | 50 MSVSFilter('support', [ |
| 51 'multiprocess_test.h', | 51 'multiprocess_test.h', |
| 52 'no_windows2000_unittest.h', | 52 'no_windows2000_unittest.h', |
| 53 'perf_test_suite.h', |
| 53 'run_all_unittests.cc', | 54 'run_all_unittests.cc', |
| 54 'test_suite.h', | 55 'test_suite.h', |
| 55 ]), | 56 ]), |
| 56 | 57 |
| 57 MSVSFilter('base_tests', [ | 58 MSVSFilter('base_tests', [ |
| 58 'at_exit_unittest.cc', | 59 'at_exit_unittest.cc', |
| 59 'atomicops_unittest.cc', | 60 'atomicops_unittest.cc', |
| 60 'clipboard_unittest.cc', | 61 'clipboard_unittest.cc', |
| 61 'command_line_unittest.cc', | 62 'command_line_unittest.cc', |
| 62 'condition_variable_unittest.cc', | 63 'condition_variable_unittest.cc', |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 '$(SolutionDir)../testing/using_gtest.vsprops', | 221 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 221 ]) | 222 ]) |
| 222 | 223 |
| 223 # TODO(sgk) should this be moved into base.lib like everything else? This will | 224 # TODO(sgk) should this be moved into base.lib like everything else? This will |
| 224 # require updating a bunch of other SConscripts which link directly against | 225 # require updating a bunch of other SConscripts which link directly against |
| 225 # this generated object file. | 226 # this generated object file. |
| 226 env.StaticObject('perftimer.cc') | 227 env.StaticObject('perftimer.cc') |
| 227 | 228 |
| 228 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 229 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
| 229 env.StaticObject('run_all_perftests.cc') | 230 env.StaticObject('run_all_perftests.cc') |
| OLD | NEW |