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

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: Completing transition to a separate component. 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/ui/content_accelerators/BUILD.gn b/components/data_use_measurement/BUILD.gn
similarity index 51%
copy from ui/content_accelerators/BUILD.gn
copy to components/data_use_measurement/BUILD.gn
index 314fda12c5222f85d3615f33d9dca08dbde48c1e..df5c38ef8b33942dc3a1a0bd79ce2a124453114a 100644
--- a/ui/content_accelerators/BUILD.gn
+++ b/components/data_use_measurement/BUILD.gn
@@ -2,19 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("content_accelerators") {
+source_set("data_use_measurement") {
sources = [
- "accelerator_util.cc",
- "accelerator_util.h",
+ "content/data_use_user_data.cc",
sclittle 2015/08/26 23:08:29 Please fix this for the different core and content
amohammadkhan 2015/08/29 01:00:59 Done.
+ "content/data_use_user_data.h",
+ "core/data_use_measurement.cc",
+ "core/data_use_measurement.h",
]
-
- deps = [
- "//third_party/WebKit/public:blink_headers",
- "//ui/base",
- "//ui/events",
- ]
-
public_deps = [
"//content/public/browser",
+ "//net/base",
+ "//net/url_request",
]
}

Powered by Google App Engine
This is Rietveld 408576698