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

Unified Diff: net/BUILD.gn

Issue 1021153003: Move simple QUIC client classes around in the .gyp files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops! 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 d0ec1cc5e7996a52e825c26e65728b0f5e4db18f..6a2f70762296a4e046b679a90d8e97f7efab3bcd 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1264,13 +1264,10 @@ source_set("quic_tools") {
"//url",
]
}
-
-executable("simple_quic_client") {
- testonly = true
+source_set("simple_quic_tools") {
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",
@@ -1279,6 +1276,20 @@ executable("simple_quic_client") {
deps = [
":net",
"//base",
+ "//base/third_party/dynamic_annotations",
+ "//url",
+ ]
+}
+
+executable("simple_quic_client") {
+ testonly = true
+ sources = [
+ "tools/quic/quic_simple_client_bin.cc",
+ ]
+ deps = [
+ ":net",
+ ":simple_quic_tools",
+ "//base",
"//url",
]
}
« 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