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

Unified Diff: net/net.gyp

Issue 340433002: Port QuicServer to Chrome network stack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with upstream + address review comments Created 6 years, 6 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
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/quic/quic_connection_packet_writer_wrapper.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 84184237d076edce1fdecddbb44c28ea4cc6df90..d03cefa75728034537703bb0e7a57316c5f3c484 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -544,6 +544,7 @@
'balsa',
'http_server',
'net',
+ 'quic_ported_server',
'net_derived_sources',
'net_test_support',
],
@@ -1416,6 +1417,35 @@
],
},
{
+ 'target_name': 'quic_ported_server',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '../url/url.gyp:url_lib',
+ 'balsa',
+ 'net',
+ ],
+ 'sources': [
+ 'quic/quic_dispatcher.cc',
+ 'quic/quic_dispatcher.h',
+ 'quic/quic_in_memory_cache.cc',
+ 'quic/quic_in_memory_cache.h',
+ 'quic/quic_server.cc',
+ 'quic/quic_server.h',
+ 'quic/quic_connection_packet_writer_wrapper.cc',
+ 'quic/quic_connection_packet_writer_wrapper.h',
+ 'quic/quic_server_packet_writer.cc',
+ 'quic/quic_server_packet_writer.h',
+ 'quic/quic_server_session.cc',
+ 'quic/quic_server_session.h',
+ 'quic/quic_spdy_server_stream.cc',
+ 'quic/quic_spdy_server_stream.h',
+ 'quic/quic_time_wait_list_manager.cc',
+ 'quic/quic_time_wait_list_manager.h',
+ ],
+ },
+ {
'target_name': 'quic_base',
'type': 'static_library',
'dependencies': [
@@ -1475,7 +1505,7 @@
'dependencies': [
'../base/base.gyp:base',
'net',
- 'quic_base',
+ 'quic_ported_server',
],
'sources': [
'tools/quic/quic_server_bin.cc',
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/quic/quic_connection_packet_writer_wrapper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698