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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 deps = [ | 197 deps = [ |
198 ":metrics", | 198 ":metrics", |
199 ":net", | 199 ":net", |
200 ":test_support", | 200 ":test_support", |
201 "//base:prefs_test_support", | 201 "//base:prefs_test_support", |
202 "//base/test:test_support", | 202 "//base/test:test_support", |
203 "//components/variations", | 203 "//components/variations", |
204 "//testing/gtest", | 204 "//testing/gtest", |
205 ] | 205 ] |
206 | 206 |
207 if (is_linux) { | |
208 sources += [ "serialization/serialization_utils_unittest.cc" ] | |
209 deps += [ ":serialization" ] | |
210 } | |
211 | |
212 if (!is_ios) { | 207 if (!is_ios) { |
| 208 deps += [ |
| 209 "//content/public/common", |
| 210 ":gpu", |
| 211 ":profiler", |
| 212 ] |
213 sources += [ | 213 sources += [ |
214 "gpu/gpu_metrics_provider_unittest.cc", | 214 "gpu/gpu_metrics_provider_unittest.cc", |
215 "profiler/profiler_metrics_provider_unittest.cc", | 215 "profiler/profiler_metrics_provider_unittest.cc", |
216 "profiler/tracking_synchronizer_unittest.cc", | 216 "profiler/tracking_synchronizer_unittest.cc", |
217 ] | 217 ] |
218 deps += [ | 218 } |
219 ":gpu", | 219 if (is_linux) { |
220 ":profiler", | 220 sources += [ "serialization/serialization_utils_unittest.cc" ] |
221 "//content/public/common", | 221 deps += [ ":serialization" ] |
222 ] | |
223 } | 222 } |
224 } | 223 } |
225 # TODO(GYP): metrics_chromeos | 224 # TODO(GYP): metrics_chromeos |
OLD | NEW |