OLD | NEW |
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "//components/metrics/proto", | 63 "//components/metrics/proto", |
64 ] | 64 ] |
65 deps = [ | 65 deps = [ |
66 "//base", | 66 "//base", |
67 "//base:i18n", | 67 "//base:i18n", |
68 "//base:prefs", | 68 "//base:prefs", |
69 "//components/variations", | 69 "//components/variations", |
70 "//third_party/zlib", | 70 "//third_party/zlib", |
71 ] | 71 ] |
72 | 72 |
73 if (is_chromeos) { | 73 if (is_chromeos_ui) { |
74 deps += [ ":serialization" ] | 74 deps += [ ":serialization" ] |
75 } | 75 } |
76 | 76 |
77 if (is_win) { | 77 if (is_win) { |
78 sources -= [ "machine_id_provider_stub.cc" ] | 78 sources -= [ "machine_id_provider_stub.cc" ] |
79 } | 79 } |
80 } | 80 } |
81 | 81 |
82 # GYP version: components/metrics.gypi:metrics_gpu | 82 # GYP version: components/metrics.gypi:metrics_gpu |
83 source_set("gpu") { | 83 source_set("gpu") { |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 ":profiler", | 198 ":profiler", |
199 ":test_support", | 199 ":test_support", |
200 "//base:prefs_test_support", | 200 "//base:prefs_test_support", |
201 "//base/test:test_support", | 201 "//base/test:test_support", |
202 "//components/variations", | 202 "//components/variations", |
203 "//content/public/common", | 203 "//content/public/common", |
204 "//testing/gtest", | 204 "//testing/gtest", |
205 ] | 205 ] |
206 } | 206 } |
207 # TODO(GYP): metrics_chromeos | 207 # TODO(GYP): metrics_chromeos |
OLD | NEW |