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

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: Addressing reviewers' comments. 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 ] 58 ]
59 59
60 public_deps = [ 60 public_deps = [
61 "//components/metrics/proto", 61 "//components/metrics/proto",
62 ] 62 ]
63 deps = [ 63 deps = [
64 "//base", 64 "//base",
65 "//base:i18n", 65 "//base:i18n",
66 "//base:prefs", 66 "//base:prefs",
67 "//components/compression", 67 "//components/compression",
68 "//components/data_use_measurement/core",
68 "//components/variations", 69 "//components/variations",
69 ] 70 ]
70 71
71 if (is_chromeos) { 72 if (is_chromeos) {
72 deps += [ ":serialization" ] 73 deps += [ ":serialization" ]
73 } 74 }
74 75
75 if (is_win) { 76 if (is_win) {
76 sources -= [ "machine_id_provider_stub.cc" ] 77 sources -= [ "machine_id_provider_stub.cc" ]
77 } 78 }
(...skipping 127 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