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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 if env['PLATFORM'] == 'win32': | 74 if env['PLATFORM'] == 'win32': |
75 # Some of these aren't really Windows-specific, they're just here until | 75 # Some of these aren't really Windows-specific, they're just here until |
76 # we have the port versions working. | 76 # we have the port versions working. |
77 # TODO: move all these files to either the cross-platform block above or | 77 # TODO: move all these files to either the cross-platform block above or |
78 # a platform-specific block below. | 78 # a platform-specific block below. |
79 input_files.extend([ | 79 input_files.extend([ |
80 'clipboard_util.cc', | 80 'clipboard_util.cc', |
81 'event_recorder.cc', | 81 'event_recorder.cc', |
82 'file_version_info.cc', | 82 'file_version_info.cc', |
83 'hmac.cc', # Depends on OpenSSL; Mac team will investigate. | 83 'hmac_win.cc', |
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. |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 env.Alias('base', ['.', installed_base_unittests, icudata]) | 320 env.Alias('base', ['.', installed_base_unittests, icudata]) |
321 | 321 |
322 # TODO(sgk) should this be moved into base.lib like everything else? This will | 322 # TODO(sgk) should this be moved into base.lib like everything else? This will |
323 # require updating a bunch of other SConscripts which link directly against | 323 # require updating a bunch of other SConscripts which link directly against |
324 # this generated object file. | 324 # this generated object file. |
325 env_tests.StaticObject('perftimer.cc') | 325 env_tests.StaticObject('perftimer.cc') |
326 | 326 |
327 # Since run_all_perftests supplies a main, we cannot have it in base.lib | 327 # Since run_all_perftests supplies a main, we cannot have it in base.lib |
328 env_tests.StaticObject('run_all_perftests.cc') | 328 env_tests.StaticObject('run_all_perftests.cc') |
329 | 329 |
OLD | NEW |