Chromium Code Reviews| 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', |
|
wtc
2014/06/20 21:40:48
List this in alphabetical order, after 'net_test_s
dmziegler
2014/06/23 18:31:23
Done.
|
| 'net_derived_sources', |
| 'net_test_support', |
| ], |
| @@ -1416,6 +1417,35 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'quic_ported_server', |
|
wtc
2014/06/20 21:40:48
Please document why these files are a separate bui
dmziegler
2014/06/23 18:31:23
Done.
|
| + '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', |
|
wtc
2014/06/20 21:40:48
List these files in alphabetical order.
dmziegler
2014/06/23 18:31:23
Done.
|
| + ], |
| + }, |
| + { |
| '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', |