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 "clean_exit_beacon.cc", | 8 "clean_exit_beacon.cc", |
9 "clean_exit_beacon.h", | 9 "clean_exit_beacon.h", |
10 "client_info.cc", | 10 "client_info.cc", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ] | 81 ] |
82 | 82 |
83 deps = [ | 83 deps = [ |
84 ":metrics", | 84 ":metrics", |
85 "//net", | 85 "//net", |
86 ] | 86 ] |
87 | 87 |
88 forward_dependent_configs_from = [ ":metrics" ] | 88 forward_dependent_configs_from = [ ":metrics" ] |
89 } | 89 } |
90 | 90 |
| 91 # GYP version: components/metrics.gypi:metrics_profiler |
| 92 source_set("profiler") { |
| 93 sources = [ |
| 94 "profiler/profiler_metrics_provider.cc", |
| 95 "profiler/profiler_metrics_provider.h", |
| 96 "profiler/tracking_synchronizer.cc", |
| 97 "profiler/tracking_synchronizer.h", |
| 98 "profiler/tracking_synchronizer_observer.h", |
| 99 ] |
| 100 |
| 101 deps = [ |
| 102 ":metrics", |
| 103 "//base", |
| 104 "//content/public/browser", |
| 105 ] |
| 106 |
| 107 forward_dependent_configs_from = [ ":metrics" ] |
| 108 } |
| 109 |
91 # GYP version: components/metrics.gypi:metrics_test_support | 110 # GYP version: components/metrics.gypi:metrics_test_support |
92 static_library("test_support") { | 111 static_library("test_support") { |
93 sources = [ | 112 sources = [ |
94 "test_metrics_service_client.cc", | 113 "test_metrics_service_client.cc", |
95 "test_metrics_service_client.h", | 114 "test_metrics_service_client.h", |
96 ] | 115 ] |
97 | 116 |
98 deps = [ | 117 deps = [ |
99 ":metrics", | 118 ":metrics", |
100 ] | 119 ] |
101 | 120 |
102 forward_dependent_configs_from = [ ":metrics" ] | 121 forward_dependent_configs_from = [ ":metrics" ] |
103 } | 122 } |
104 | 123 |
105 # TODO(GYP): metrics_chromeos | 124 # TODO(GYP): metrics_chromeos |
OLD | NEW |