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

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: Fix GN build 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
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 84184237d076edce1fdecddbb44c28ea4cc6df90..bfe78d72a65586a52a74dcc5ebeb264c34c1eec8 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -546,6 +546,7 @@
'net',
'net_derived_sources',
'net_test_support',
+ 'quic_ported_server',
],
'sources': [
'<@(net_test_sources)',
@@ -1114,6 +1115,37 @@
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
},
+ {
+ # This is a temporary target which will be merged into 'net' once the
+ # dependency on balsa is eliminated and the classes are actually used.
+ '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_per_connection_packet_writer.cc',
+ 'quic/quic_per_connection_packet_writer.h',
+ 'quic/quic_server.cc',
+ 'quic/quic_server.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',
+ ],
+ },
],
'conditions': [
['use_v8_in_net == 1', {
@@ -1475,10 +1507,10 @@
'dependencies': [
'../base/base.gyp:base',
'net',
- 'quic_base',
+ 'quic_ported_server',
],
'sources': [
- 'tools/quic/quic_server_bin.cc',
+ 'quic/quic_server_bin.cc',
],
},
]

Powered by Google App Engine
This is Rietveld 408576698