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

Side by Side Diff: base/SConscript

Issue 3107: Remove duplicate stats_table.cc, left over in Windows list. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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 | « no previous file | no next file » | 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 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 # This group all depends on MessageLoop. 85 # This group all depends on MessageLoop.
86 'idle_timer.cc', 86 'idle_timer.cc',
87 'object_watcher.cc', 87 'object_watcher.cc',
88 'shared_event.cc', # Is this used? 88 'shared_event.cc', # Is this used?
89 'watchdog.cc', 89 'watchdog.cc',
90 90
91 'process.cc', 91 'process.cc',
92 92
93 'resource_util.cc', # Uses HMODULE, but may be abstractable. 93 'resource_util.cc', # Uses HMODULE, but may be abstractable.
94
95 'stats_table.cc', # Amanda is working on this(?).
96 ]) 94 ])
97 95
98 if env['PLATFORM'] == 'win32': 96 if env['PLATFORM'] == 'win32':
99 input_files.extend([ 97 input_files.extend([
100 'base_drag_source.cc', 98 'base_drag_source.cc',
101 'base_drop_target.cc', 99 'base_drop_target.cc',
102 'base_paths_win.cc', 100 'base_paths_win.cc',
103 'clipboard_win.cc', 101 'clipboard_win.cc',
104 'condition_variable_win.cc', 102 'condition_variable_win.cc',
105 'debug_on_start.cc', 103 'debug_on_start.cc',
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 env.Alias('base', ['.', installed_base_unittests, icudata]) 333 env.Alias('base', ['.', installed_base_unittests, icudata])
336 334
337 # TODO(sgk) should this be moved into base.lib like everything else? This will 335 # TODO(sgk) should this be moved into base.lib like everything else? This will
338 # require updating a bunch of other SConscripts which link directly against 336 # require updating a bunch of other SConscripts which link directly against
339 # this generated object file. 337 # this generated object file.
340 env_tests.StaticObject('perftimer.cc') 338 env_tests.StaticObject('perftimer.cc')
341 339
342 # Since run_all_perftests supplies a main, we cannot have it in base.lib 340 # Since run_all_perftests supplies a main, we cannot have it in base.lib
343 env_tests.StaticObject('run_all_perftests.cc') 341 env_tests.StaticObject('run_all_perftests.cc')
344 342
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698