summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 21:36:32 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-18 21:36:32 +0000
commitaf784739ebdc4ca47d9d52e366587e4c7ba2313b (patch)
treeb0194507224d4778968cd726bf34f8ca5d7ec165 /base
parent72c94f309664498277eee70eeccc05b44f0f255a (diff)
downloadchromium_src-af784739ebdc4ca47d9d52e366587e4c7ba2313b.zip
chromium_src-af784739ebdc4ca47d9d52e366587e4c7ba2313b.tar.gz
chromium_src-af784739ebdc4ca47d9d52e366587e4c7ba2313b.tar.bz2
Rearrange and add notes on remaining base modules that are in the Windows-specific branch of the SConscript.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/SConscript25
1 files changed, 15 insertions, 10 deletions
diff --git a/base/SConscript b/base/SConscript
index ec6b888..c3def69 100644
--- a/base/SConscript
+++ b/base/SConscript
@@ -96,24 +96,26 @@ if env['PLATFORM'] == 'win32':
# a platform-specific block below.
input_files.extend([
'clipboard_util.cc',
- 'debug_on_start.cc',
'event_recorder.cc',
'file_version_info.cc',
- 'hmac.cc', # Uses Windows-specific crypto APIs.
+ 'hmac.cc', # Depends on OpenSSL; Mac team will investigate.
+
+ # This group all depends on MessageLoop.
'idle_timer.cc',
- 'image_util.cc',
'message_loop.cc',
'non_thread_safe.cc',
'object_watcher.cc',
- 'process.cc',
- 'process_util.cc',
- 'registry.cc',
- 'resource_util.cc',
- 'shared_event.cc',
- 'stats_table.cc',
+ 'shared_event.cc', # Is this used?
'thread.cc',
'watchdog.cc',
- 'worker_pool.cc',
+
+ 'process.cc',
+ 'process_util.cc',
+
+ 'resource_util.cc', # Uses HMODULE, but may be abstractable.
+
+ 'stats_table.cc', # Amanda is working on this(?).
+ 'worker_pool.cc', # Maybe not necessary for test shell.
])
if env['PLATFORM'] == 'win32':
@@ -123,12 +125,15 @@ if env['PLATFORM'] == 'win32':
'base_paths_win.cc',
'clipboard_win.cc',
'condition_variable_win.cc',
+ 'debug_on_start.cc',
'debug_util_win.cc',
'file_util_win.cc',
'iat_patch.cc',
+ 'image_util.cc',
'lock_impl_win.cc',
'message_pump_win.cc',
'pe_image.cc',
+ 'registry.cc',
'shared_memory_win.cc',
'sys_string_conversions_win.cc',
'thread_local_storage_win.cc',