diff options
-rw-r--r-- | base/SConscript | 3 |
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', |