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

Unified Diff: net/BUILD.gn

Issue 995423003: Add a chromium based simple QUIC client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix iOS Created 5 years, 9 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') | no next file with comments »
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 b409817e0bb1cd40a16a44171f5ce9b832900e98..d0ec1cc5e7996a52e825c26e65728b0f5e4db18f 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1265,6 +1265,24 @@ source_set("quic_tools") {
]
}
+executable("simple_quic_client") {
+ testonly = true
+ sources = [
+ "tools/quic/quic_simple_client.cc",
+ "tools/quic/quic_simple_client.h",
+ "tools/quic/quic_simple_client_bin.cc",
+ "tools/quic/quic_simple_client_session.cc",
+ "tools/quic/quic_simple_client_session.h",
+ "tools/quic/quic_simple_client_stream.cc",
+ "tools/quic/quic_simple_client_stream.h",
+ ]
+ deps = [
+ ":net",
+ "//base",
+ "//url",
+ ]
+}
+
# TODO(GYP) make this compile on Android, we need some native test deps done.
# TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong.
# TODO(GYP) Also doesn't work on Mac, need to figure out why not.
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698