diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 01:14:24 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 01:14:24 +0000 |
commit | 8d752be9a3b26b49415a3b6f7d1bd96611b39fd1 (patch) | |
tree | 0298666fdb69592af60b029c7adb3c5b1545e8a1 /base | |
parent | 2128bec9f131cbc1f17593a5cb296087d16f08e1 (diff) | |
download | chromium_src-8d752be9a3b26b49415a3b6f7d1bd96611b39fd1.zip chromium_src-8d752be9a3b26b49415a3b6f7d1bd96611b39fd1.tar.gz chromium_src-8d752be9a3b26b49415a3b6f7d1bd96611b39fd1.tar.bz2 |
Move some bits around in the SConscript that are Windows-specific, and label one that needs work.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@769 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/SConscript | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/base/SConscript b/base/SConscript index 0ee43c3..40ae21a 100644 --- a/base/SConscript +++ b/base/SConscript @@ -58,6 +58,8 @@ input_files = [ 'base_switches.cc', 'command_line.cc', 'icu_util.cc', + 'json_reader.cc', + 'json_writer.cc', 'lock.cc', 'logging.cc', 'pickle.cc', @@ -72,11 +74,9 @@ input_files = [ if env['PLATFORM'] == 'win32': # Some of these aren't really Windows-specific, they're just here until # we have the port versions working. - # TODO(evanm): label all these modules with whether they're needing work - # or unfeasible. + # TODO: move all these files to either the cross-platform block above or + # a platform-specific block below. input_files.extend([ - 'base_drag_source.cc', - 'base_drop_target.cc', 'base_paths.cc', 'bzip2_error_handler.cc', 'clipboard_util.cc', @@ -86,12 +86,9 @@ if env['PLATFORM'] == 'win32': 'file_util.cc', 'file_version_info.cc', 'histogram.cc', - 'hmac.cc', - 'iat_patch.cc', + 'hmac.cc', # Uses Windows-specific crypto APIs. 'idle_timer.cc', 'image_util.cc', - 'json_reader.cc', - 'json_writer.cc', 'md5.cc', 'memory_debug.cc', 'message_loop.cc', @@ -115,18 +112,19 @@ if env['PLATFORM'] == 'win32': 'tracked.cc', 'tracked_objects.cc', 'watchdog.cc', - 'win_util.cc', - 'wmi_util.cc', 'word_iterator.cc', 'worker_pool.cc', ]) if env['PLATFORM'] == 'win32': input_files.extend([ + 'base_drag_source.cc', + 'base_drop_target.cc', 'base_paths_win.cc', 'clipboard_win.cc', 'condition_variable_win.cc', 'file_util_win.cc', + 'iat_patch.cc', 'lock_impl_win.cc', 'shared_memory_win.cc', 'string_util_win.cc', @@ -134,6 +132,8 @@ if env['PLATFORM'] == 'win32': 'thread_local_storage_win.cc', 'time_win.cc', 'waitable_event_win.cc', + 'win_util.cc', + 'wmi_util.cc', ]) if env['PLATFORM'] in ('darwin', 'posix'): @@ -243,6 +243,8 @@ env_tests.ChromeTestProgram(['debug_message.exe', # cross-platform live below. test_files = [ 'at_exit_unittest.cc', + 'json_reader_unittest.cc', + 'json_writer_unittest.cc', 'linked_ptr_unittest.cc', 'pickle_unittest.cc', 'ref_counted_unittest.cc', @@ -272,8 +274,6 @@ if env['PLATFORM'] == 'win32': 'gfx/vector_canvas_unittest.cc', 'idletimer_unittest.cc', 'hmac_unittest.cc', - 'json_reader_unittest.cc', - 'json_writer_unittest.cc', 'message_loop_unittest.cc', 'object_watcher_unittest.cc', 'path_service_unittest.cc', |