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

Side by Side Diff: components/metrics/BUILD.gn

Issue 1330443002: Report data usage UMA for Chrome services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewArchServices
Patch Set: Do the necessary plumbing for sync service. Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # GYP version: components/metrics.gypi:metrics 5 # GYP version: components/metrics.gypi:metrics
6 source_set("metrics") { 6 source_set("metrics") {
7 sources = [ 7 sources = [
8 "call_stack_profile_metrics_provider.cc", 8 "call_stack_profile_metrics_provider.cc",
9 "call_stack_profile_metrics_provider.h", 9 "call_stack_profile_metrics_provider.h",
10 "clean_exit_beacon.cc", 10 "clean_exit_beacon.cc",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "net/wifi_access_point_info_provider.h", 106 "net/wifi_access_point_info_provider.h",
107 "net/wifi_access_point_info_provider_chromeos.cc", 107 "net/wifi_access_point_info_provider_chromeos.cc",
108 "net/wifi_access_point_info_provider_chromeos.h", 108 "net/wifi_access_point_info_provider_chromeos.h",
109 ] 109 ]
110 110
111 public_deps = [ 111 public_deps = [
112 ":metrics", 112 ":metrics",
113 ] 113 ]
114 deps = [ 114 deps = [
115 "//base", 115 "//base",
116 "//components/data_use_measurement/core",
116 "//net", 117 "//net",
117 "//url", 118 "//url",
118 ] 119 ]
119 } 120 }
120 121
121 # GYP version: components/metrics.gypi:metrics_profiler 122 # GYP version: components/metrics.gypi:metrics_profiler
122 source_set("profiler") { 123 source_set("profiler") {
123 sources = [ 124 sources = [
124 "profiler/profiler_metrics_provider.cc", 125 "profiler/profiler_metrics_provider.cc",
125 "profiler/profiler_metrics_provider.h", 126 "profiler/profiler_metrics_provider.h",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 "//content/public/common", 206 "//content/public/common",
206 "//testing/gtest", 207 "//testing/gtest",
207 ] 208 ]
208 209
209 if (is_linux) { 210 if (is_linux) {
210 sources += [ "serialization/serialization_utils_unittest.cc" ] 211 sources += [ "serialization/serialization_utils_unittest.cc" ]
211 deps += [ ":serialization" ] 212 deps += [ ":serialization" ]
212 } 213 }
213 } 214 }
214 # TODO(GYP): metrics_chromeos 215 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698