Chromium Code Reviews| Index: net/BUILD.gn |
| diff --git a/net/BUILD.gn b/net/BUILD.gn |
| index 8175b1665fb141af8c0eebc82b204c54fced27a1..f9f8c743f923b984d6afe20f1c951879f6035c43 100644 |
| --- a/net/BUILD.gn |
| +++ b/net/BUILD.gn |
| @@ -701,6 +701,46 @@ source_set("test_support") { |
| forward_dependent_configs_from = deps |
| } |
| +source_set("quic_tools") { |
|
wtc
2014/06/24 01:06:48
Why don't you call this "quic_ported_server" (the
dmziegler
2014/06/24 19:01:18
I decided in a later CL to rename quic_ported_serv
|
| + 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", |
| + "tools/quic/spdy_utils.cc", |
| + "tools/quic/spdy_utils.h", |
| + ] |
| + deps = [ |
| + ":balsa", |
| + ":net", |
| + "//base", |
| + "//base/third_party/dynamic_annotations", |
| + "//url", |
| + ] |
| +} |
| + |
| +executable("quic_server") { |
| + sources = [ "quic/quic_server_bin.cc" ] |
| + deps = [ |
| + ":quic_tools", |
| + ":net", |
| + "//base", |
| + "//third_party/openssl", |
| + ] |
| +} |
| + |
| if (use_v8_in_net) { |
| component("net_with_v8") { |
| sources = [ |
| @@ -990,16 +1030,6 @@ if (is_linux) { |
| "//third_party/openssl", |
| ] |
| } |
| - |
| - executable("quic_server") { |
| - sources = [ "tools/quic/quic_server_bin.cc" ] |
| - deps = [ |
| - ":quic_base", |
| - ":net", |
| - "//base", |
| - "//third_party/openssl", |
| - ] |
| - } |
| } |
| if (is_android) { |