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_ios) { |
| 208 deps += [ |
| 209 "//content/public/common", |
| 210 ":gpu", |
| 211 ":profiler", |
| 212 ] |
| 213 sources += [ |
| 214 "gpu/gpu_metrics_provider_unittest.cc", |
| 215 "profiler/profiler_metrics_provider_unittest.cc", |
| 216 "profiler/tracking_synchronizer_unittest.cc", |
| 217 ] |
| 218 } |
207 if (is_linux) { | 219 if (is_linux) { |
208 sources += [ "serialization/serialization_utils_unittest.cc" ] | 220 sources += [ "serialization/serialization_utils_unittest.cc" ] |
209 deps += [ ":serialization" ] | 221 deps += [ ":serialization" ] |
210 } | 222 } |
211 | 223 |
212 if (!is_ios) { | 224 if (!is_ios) { |
213 sources += [ | 225 sources += [ |
214 "gpu/gpu_metrics_provider_unittest.cc", | 226 "gpu/gpu_metrics_provider_unittest.cc", |
215 "profiler/profiler_metrics_provider_unittest.cc", | 227 "profiler/profiler_metrics_provider_unittest.cc", |
216 "profiler/tracking_synchronizer_unittest.cc", | 228 "profiler/tracking_synchronizer_unittest.cc", |
217 ] | 229 ] |
218 deps += [ | 230 deps += [ |
219 ":gpu", | 231 ":gpu", |
220 ":profiler", | 232 ":profiler", |
221 "//content/public/common", | 233 "//content/public/common", |
222 ] | 234 ] |
223 } | 235 } |
224 } | 236 } |
225 # TODO(GYP): metrics_chromeos | 237 # TODO(GYP): metrics_chromeos |
OLD | NEW |