Chromium Code Reviews| Index: net/net.gyp |
| diff --git a/net/net.gyp b/net/net.gyp |
| index 84184237d076edce1fdecddbb44c28ea4cc6df90..89986a4daa9669e4fdaf003088b7d93a4a8edaf8 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,33 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'quic_ported_server', |
|
wtc
2014/06/18 02:04:46
Is this a temporary target? It seems that these fi
dmziegler
2014/06/18 20:13:40
Yes. I also don't want to bloat 'net' until these
|
| + '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_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 +1503,7 @@ |
| 'dependencies': [ |
| '../base/base.gyp:base', |
| 'net', |
| - 'quic_base', |
| + 'quic_ported_server', |
| ], |
| 'sources': [ |
| 'tools/quic/quic_server_bin.cc', |