OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("metrics") { | 5 source_set("metrics") { |
6 sources = [ | 6 sources = [ |
7 "cast_metrics_prefs.cc", | 7 "cast_metrics_prefs.cc", |
8 "cast_metrics_prefs.h", | 8 "cast_metrics_prefs.h", |
9 "cast_metrics_service_client.cc", | 9 "cast_metrics_service_client.cc", |
10 "cast_metrics_service_client.h", | 10 "cast_metrics_service_client.h", |
11 "cast_stability_metrics_provider.cc", | 11 "cast_stability_metrics_provider.cc", |
12 "cast_stability_metrics_provider.h", | 12 "cast_stability_metrics_provider.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//base:i18n", | 17 "//base:i18n", |
18 "//base:prefs", | |
19 "//chromecast/base", | 18 "//chromecast/base", |
20 "//chromecast/common", | 19 "//chromecast/common", |
21 "//components/metrics", | 20 "//components/metrics", |
22 "//components/metrics:gpu", | 21 "//components/metrics:gpu", |
23 "//components/metrics:net", | 22 "//components/metrics:net", |
24 "//components/metrics:profiler", | 23 "//components/metrics:profiler", |
| 24 "//components/prefs", |
25 "//content/public/browser", | 25 "//content/public/browser", |
26 "//content/public/common", | 26 "//content/public/common", |
27 ] | 27 ] |
28 | 28 |
29 if (is_linux) { | 29 if (is_linux) { |
30 sources += [ | 30 sources += [ |
31 "external_metrics.cc", | 31 "external_metrics.cc", |
32 "external_metrics.h", | 32 "external_metrics.h", |
33 ] | 33 ] |
34 | 34 |
35 deps += [ "//components/metrics:serialization" ] | 35 deps += [ "//components/metrics:serialization" ] |
36 } | 36 } |
37 } | 37 } |
OLD | NEW |