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

Unified Diff: net/BUILD.gn

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
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/quic/quic_server_packet_writer.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/quic/quic_server_packet_writer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698