| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |