summaryrefslogtreecommitdiffstats
path: root/base/SConscript
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 21:45:51 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 21:45:51 +0000
commit69d868a6ff2192096874277fd89aa9977ab202a8 (patch)
tree2dd0ffb748cad72d4832305347f008b436cd629a /base/SConscript
parent60e94ad8d5fd1c20ebfbee7af57ae4fb0e955fad (diff)
downloadchromium_src-69d868a6ff2192096874277fd89aa9977ab202a8.zip
chromium_src-69d868a6ff2192096874277fd89aa9977ab202a8.tar.gz
chromium_src-69d868a6ff2192096874277fd89aa9977ab202a8.tar.bz2
Remove base\shared_memory.cc from the SCons build in favor of base\shared_memory_{win,posix}.cc.
TBR: avi git-svn-id: svn://svn.chromium.org/chrome/trunk/src@748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r--base/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/SConscript b/base/SConscript
index b2d0d61..c338994 100644
--- a/base/SConscript
+++ b/base/SConscript
@@ -111,7 +111,6 @@ if env['PLATFORM'] == 'win32':
'revocable_store.cc',
'sha2.cc',
'shared_event.cc',
- 'shared_memory.cc',
'stats_table.cc',
'third_party/nspr/prtime.cc',
'third_party/nss/sha512.cc',
@@ -134,6 +133,7 @@ if env['PLATFORM'] == 'win32':
'condition_variable_win.cc',
'file_util_win.cc',
'lock_impl_win.cc',
+ 'shared_memory_win.cc',
'string_util_win.cc',
'sys_string_conversions_win.cc',
'thread_local_storage_win.cc',
@@ -145,6 +145,7 @@ if env['PLATFORM'] in ('darwin', 'posix'):
input_files.extend([
'condition_variable_posix.cc',
'lock_impl_posix.cc',
+ 'shared_memory_posix.cc',
'thread_local_storage_posix.cc',
'time_posix.cc',
'waitable_event_generic.cc',