Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Side by Side Diff: base/base_unittests.scons

Issue 18003: Call logging::InitLogging. The lack of this was causing some hangs (and poss... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/base_paths.h ('k') | base/build/base_unittests.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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')
OLDNEW
« no previous file with comments | « base/base_paths.h ('k') | base/build/base_unittests.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698