Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1774)

Unified Diff: net/net.gyp

Issue 7037022: An initial curvecp implementation. This implementation is not complete, (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« net/curvecp/messenger.cc ('K') | « net/curvecp/test_server.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
===================================================================
--- net/net.gyp (revision 85751)
+++ net/net.gyp (working copy)
@@ -1352,6 +1352,59 @@
'tools/flip_server/url_utilities.h',
],
},
+ {
+ 'target_name': 'curvecp',
+ 'type': '<(library)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'net.gyp:net',
+ ],
+ 'sources': [
+ 'curvecp/circular_buffer.cc',
+ 'curvecp/circular_buffer.h',
+ 'curvecp/client_packetizer.cc',
+ 'curvecp/client_packetizer.h',
+ 'curvecp/connection_key.cc',
+ 'curvecp/connection_key.h',
+ 'curvecp/curvecp_client_socket.cc',
+ 'curvecp/curvecp_client_socket.h',
+ 'curvecp/curvecp_server_socket.cc',
+ 'curvecp/curvecp_server_socket.h',
+ 'curvecp/messenger.h',
+ 'curvecp/messenger.cc',
+ 'curvecp/packetizer.h',
+ 'curvecp/protocol.cc',
+ 'curvecp/protocol.h',
+ 'curvecp/received_block_list.cc',
+ 'curvecp/received_block_list.h',
+ 'curvecp/rtt_and_send_rate_calculator.cc',
+ 'curvecp/rtt_and_send_rate_calculator.h',
+ 'curvecp/sent_block_list.cc',
+ 'curvecp/sent_block_list.h',
+ 'curvecp/server_messenger.cc',
+ 'curvecp/server_messenger.h',
+ 'curvecp/server_packetizer.cc',
+ 'curvecp/server_packetizer.h',
+ ],
+ },
+ {
+ 'target_name': 'curvecp_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'net.gyp:curvecp',
+ 'net.gyp:net',
+ 'net_test_support',
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+ '../third_party/zlib/zlib.gyp:zlib',
+ ],
+ 'sources': [
+ 'curvecp/curvecp_transfer_unittest.cc',
+ 'curvecp/test_client.cc',
+ 'curvecp/test_server.cc',
+ ],
+ },
]
}],
['OS=="win"', {
« net/curvecp/messenger.cc ('K') | « net/curvecp/test_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698