diff options
author | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 18:49:04 +0000 |
---|---|---|
committer | mmoss@google.com <mmoss@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 18:49:04 +0000 |
commit | 346faa86aa609034668ae039c83f5c4420dc1a8b (patch) | |
tree | fa54e291d2dabb7e4b0dc618e2436be953bf4e9d | |
parent | 408d35f5f5c316b2f8df12be606a8ff8921ba5ca (diff) | |
download | chromium_src-346faa86aa609034668ae039c83f5c4420dc1a8b.zip chromium_src-346faa86aa609034668ae039c83f5c4420dc1a8b.tar.gz chromium_src-346faa86aa609034668ae039c83f5c4420dc1a8b.tar.bz2 |
Move some files which don't seem to be Win32-specific out of the Win32 blocks.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@820 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/SConscript | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/base/SConscript b/base/SConscript index e83d449..0dc9d25 100644 --- a/base/SConscript +++ b/base/SConscript @@ -56,20 +56,27 @@ if env['PLATFORM'] == 'win32': input_files = [ 'at_exit.cc', 'base_switches.cc', + 'bzip2_error_handler.cc', 'command_line.cc', 'debug_util.cc', + 'file_util.cc', 'icu_util.cc', 'json_reader.cc', 'json_writer.cc', 'lock.cc', 'logging.cc', + 'md5.cc', + 'memory_debug.cc', + 'path_service.cc', 'pickle.cc', 'platform_thread.cc', + 'revocable_store.cc', 'string_escape.cc', 'string_piece.cc', 'string_util.cc', 'string_util_icu.cc', 'values.cc', + 'word_iterator.cc', ] if env['PLATFORM'] == 'win32': @@ -79,27 +86,21 @@ if env['PLATFORM'] == 'win32': # a platform-specific block below. input_files.extend([ 'base_paths.cc', - 'bzip2_error_handler.cc', 'clipboard_util.cc', 'debug_on_start.cc', 'event_recorder.cc', - 'file_util.cc', 'file_version_info.cc', 'histogram.cc', 'hmac.cc', # Uses Windows-specific crypto APIs. 'idle_timer.cc', 'image_util.cc', - 'md5.cc', - 'memory_debug.cc', 'message_loop.cc', 'non_thread_safe.cc', 'object_watcher.cc', - 'path_service.cc', 'process.cc', 'process_util.cc', 'registry.cc', 'resource_util.cc', - 'revocable_store.cc', 'sha2.cc', 'shared_event.cc', 'stats_table.cc', @@ -111,7 +112,6 @@ if env['PLATFORM'] == 'win32': 'tracked.cc', 'tracked_objects.cc', 'watchdog.cc', - 'word_iterator.cc', 'worker_pool.cc', ]) |