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

Unified Diff: components/data_use_measurement/BUILD.gn

Issue 1279543002: Support needed to measure user and service traffic in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewHistogram
Patch Set: Adding sclittle to OWNERs and little fix in ChromeNetworkDelegate test. Created 5 years, 4 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
Index: components/data_use_measurement/BUILD.gn
diff --git a/components/data_use_measurement/BUILD.gn b/components/data_use_measurement/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..130dbd51f42bcd12425cef093d5333fd2d988eb8
--- /dev/null
+++ b/components/data_use_measurement/BUILD.gn
@@ -0,0 +1,26 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("data_use_measurement_content") {
blundell 2015/08/31 09:15:40 It's preferred in GN to just put a BUILD.gn file i
amohammadkhan 2015/09/01 04:52:48 Done.
+ sources = [
+ "content/data_use_measurement.cc",
+ "content/data_use_measurement.h",
+ ]
+ deps = [
+ ":data_use_measurement_core",
+ "//content/public/browser",
+ "//net/base",
blundell 2015/08/31 09:15:40 the //net deps here don't seem to exactly match th
amohammadkhan 2015/09/01 04:52:48 Done.
+ "//net/url_request",
+ ]
+}
+
+source_set("data_use_measurement_core") {
+ sources = [
+ "core/data_use_user_data.cc",
+ "core/data_use_user_data.h",
+ ]
+ deps = [
+ "//net/base",
blundell 2015/08/31 09:15:40 the deps here don't match the ones in GYP.
amohammadkhan 2015/09/01 04:52:48 Done.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698