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

Unified Diff: net/BUILD.gn

Issue 1303973009: [DO NOT COMMIT] Re-use the dafsa code for s-w-r histograms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Correct the build files. Created 5 years, 1 month 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
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index d355d46c70b9724e65a2d0eda653905d8f4886cb..30ebc43b7907f0cf74abd3a784a3ec333438569e 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1275,6 +1275,19 @@ source_set("simple_quic_tools") {
]
}
+source_set("swr_histogram_domains") {
+ sources = [
+ "base/swr_histogram_domains/swr_histogram_domains.cc",
+ "base/swr_histogram_domains/swr_histogram_domains.h",
+ ]
+ deps = [
+ ":net",
+ "//base:base",
tyoshino (SeeGerritForStatus) 2015/11/04 08:34:07 :base can be omitted? I like making deps specific
Adam Rice 2015/11/05 05:30:40 Done, thanks.
+ "//net/base/swr_histogram_domains",
tyoshino (SeeGerritForStatus) 2015/11/04 08:34:07 can we make distinction between net/base/swr_histo
Adam Rice 2015/11/05 05:30:40 I renamed //net:swr_histogram_domains to swr_domai
+ ]
+ configs += net_shared_configs
+}
+
if (!is_ios) {
executable("quic_client") {
sources = [
@@ -1337,6 +1350,7 @@ test("net_unittests") {
":http_server",
":net",
":simple_quic_tools",
+ ":swr_histogram_domains",
":test_support",
"//base",
"//base:i18n",

Powered by Google App Engine
This is Rietveld 408576698