diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 19:53:18 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-18 19:53:18 +0000 |
commit | 9f2ca2b1046623b1e73a6602407c992204645701 (patch) | |
tree | 3880e9ecd9425f40f2267d15f1b8535b06f8fdc7 /base/base.gyp | |
parent | df84e51c34d4240614114fe9811aedbab5f9d7d6 (diff) | |
download | chromium_src-9f2ca2b1046623b1e73a6602407c992204645701.zip chromium_src-9f2ca2b1046623b1e73a6602407c992204645701.tar.gz chromium_src-9f2ca2b1046623b1e73a6602407c992204645701.tar.bz2 |
Remove WorkerPoolMac, rename WorkerPoolLinux to WorkerPoolPosix and use that on mac.
We currently use WorkerPoolLinux on mac (as an attempt to fix the fork issue -- didn't help, but didn't hurt either), so this should be safe.
This removes the last @interfaces from libbase.
Also add worker_pool_posix_unittest.cc back to base_unittests
BUG=44392,46929
TEST=Chrome still works. The PDF plugin prints no more warnings when it's loaded.
Review URL: http://codereview.chromium.org/6055001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gyp')
-rw-r--r-- | base/base.gyp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/base.gyp b/base/base.gyp index 4c72e8b..562aedf 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -172,6 +172,7 @@ 'win/scoped_bstr_unittest.cc', 'win/scoped_comptr_unittest.cc', 'win/scoped_variant_unittest.cc', + 'worker_pool_posix_unittest.cc', 'worker_pool_unittest.cc', ], 'dependencies': [ @@ -185,7 +186,6 @@ ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"', { 'sources!': [ 'file_version_info_unittest.cc', - 'worker_pool_linux_unittest.cc', ], 'sources': [ 'nix/xdg_util_unittest.cc', @@ -218,6 +218,7 @@ 'sources!': [ 'dir_reader_posix_unittest.cc', 'file_descriptor_shuffle_unittest.cc', + 'worker_pool_posix_unittest.cc', ], }, { # OS != "win" 'sources/': [ |