diff options
author | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 16:14:53 +0000 |
---|---|---|
committer | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 16:14:53 +0000 |
commit | 0840cc764d0f0b693d3762c356b7d35e58d343af (patch) | |
tree | 8f1f90ef17b8e395f27f239beaf86ce9b5af6467 /ipc/ipc.gyp | |
parent | 160673757540777e7db373c56b61673f05870c99 (diff) | |
download | chromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.zip chromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.tar.gz chromium_src-0840cc764d0f0b693d3762c356b7d35e58d343af.tar.bz2 |
This adds the first version of SyncSocket to base, along with a trivial unittest.
SyncSocket provides a blocking send/receive that can be used for synchronization.
Review URL: http://codereview.chromium.org/418004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32927 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc.gyp')
-rw-r--r-- | ipc/ipc.gyp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ipc/ipc.gyp b/ipc/ipc.gyp index 8e393be..eecf1df 100644 --- a/ipc/ipc.gyp +++ b/ipc/ipc.gyp @@ -101,6 +101,11 @@ '../views/views.gyp:views', ], }], + ['OS=="win"', { + 'sources': [ + 'sync_socket_unittest.cc', + ], + }], ], }, ] |