diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-22 01:30:51 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-22 01:30:51 +0000 |
commit | db6609b8a05c594585ef6e04cb3f0e995bc3ce7c (patch) | |
tree | 94f518ae8ec9ade935dc81f20be192b60392a160 /jingle/jingle.gyp | |
parent | 05a7794358d8de30baa93a784b7420f5f962d236 (diff) | |
download | chromium_src-db6609b8a05c594585ef6e04cb3f0e995bc3ce7c.zip chromium_src-db6609b8a05c594585ef6e04cb3f0e995bc3ce7c.tar.gz chromium_src-db6609b8a05c594585ef6e04cb3f0e995bc3ce7c.tar.bz2 |
Implement PseudoTCP adapter.
The new PseudoTcpAdapter will replace PseudoTcpChannel in remoting/protocol
and will also be used for Pepper P2P APIs.
BUG=None
TEST=Unittests
Review URL: http://codereview.chromium.org/6879119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle/jingle.gyp')
-rw-r--r-- | jingle/jingle.gyp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jingle/jingle.gyp b/jingle/jingle.gyp index fc600f5..09cbc51 100644 --- a/jingle/jingle.gyp +++ b/jingle/jingle.gyp @@ -14,6 +14,8 @@ 'sources': [ 'glue/channel_socket_adapter.cc', 'glue/channel_socket_adapter.h', + 'glue/pseudotcp_adapter.cc', + 'glue/pseudotcp_adapter.h', 'glue/stream_socket_adapter.cc', 'glue/stream_socket_adapter.h', 'glue/thread_wrapper.cc', @@ -24,9 +26,11 @@ 'dependencies': [ '../base/base.gyp:base', '../third_party/libjingle/libjingle.gyp:libjingle', + '../third_party/libjingle/libjingle.gyp:libjingle_p2p', ], 'export_dependent_settings': [ '../third_party/libjingle/libjingle.gyp:libjingle', + '../third_party/libjingle/libjingle.gyp:libjingle_p2p', ], }, # A library for sending and receiving peer-issued notifications. @@ -149,6 +153,7 @@ 'glue/channel_socket_adapter_unittest.cc', 'glue/jingle_glue_mock_objects.cc', 'glue/jingle_glue_mock_objects.h', + 'glue/pseudotcp_adapter_unittest.cc', 'glue/stream_socket_adapter_unittest.cc', 'glue/thread_wrapper_unittest.cc', 'notifier/base/chrome_async_socket_unittest.cc', |