diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-20 23:53:40 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-20 23:53:40 +0000 |
commit | 78c768e168d0af4452eddf936731ef11ef282bc6 (patch) | |
tree | 0d976338bb5141c266a184f0549d132c8b7a21ce /base/SConscript | |
parent | 4de93aa65da7067c8d253f073435e8d8ae5b1da9 (diff) | |
download | chromium_src-78c768e168d0af4452eddf936731ef11ef282bc6.zip chromium_src-78c768e168d0af4452eddf936731ef11ef282bc6.tar.gz chromium_src-78c768e168d0af4452eddf936731ef11ef282bc6.tar.bz2 |
Bring thread_posix into Linux build and fix it for Linux/Mac.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1133 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r-- | base/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/SConscript b/base/SConscript index 190fdfd..bf07eb4 100644 --- a/base/SConscript +++ b/base/SConscript @@ -163,8 +163,8 @@ if env['PLATFORM'] == 'darwin': 'clipboard_mac.cc', 'file_util_mac.mm', 'file_version_info_mac.mm', - 'thread_posix.cc', 'sys_string_conversions_mac.cc', + 'thread_posix.cc', ]) if env['PLATFORM'] == 'posix': @@ -173,6 +173,7 @@ if env['PLATFORM'] == 'posix': 'base_paths_linux.cc', 'file_util_linux.cc', 'sys_string_conversions_linux.cc', + 'thread_posix.cc', ]) env.ChromeStaticLibrary('base', input_files) |