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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "net/wifi_access_point_info_provider.h", | 108 "net/wifi_access_point_info_provider.h", |
109 "net/wifi_access_point_info_provider_chromeos.cc", | 109 "net/wifi_access_point_info_provider_chromeos.cc", |
110 "net/wifi_access_point_info_provider_chromeos.h", | 110 "net/wifi_access_point_info_provider_chromeos.h", |
111 ] | 111 ] |
112 | 112 |
113 public_deps = [ | 113 public_deps = [ |
114 ":metrics", | 114 ":metrics", |
115 ] | 115 ] |
116 deps = [ | 116 deps = [ |
117 "//base", | 117 "//base", |
| 118 "//components/data_use_measurement/core", |
118 "//net", | 119 "//net", |
119 "//url", | 120 "//url", |
120 ] | 121 ] |
121 } | 122 } |
122 | 123 |
123 if (!is_ios) { | 124 if (!is_ios) { |
124 # GYP version: components/metrics.gypi:metrics_profiler | 125 # GYP version: components/metrics.gypi:metrics_profiler |
125 source_set("profiler") { | 126 source_set("profiler") { |
126 sources = [ | 127 sources = [ |
127 "profiler/profiler_metrics_provider.cc", | 128 "profiler/profiler_metrics_provider.cc", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "profiler/tracking_synchronizer_unittest.cc", | 217 "profiler/tracking_synchronizer_unittest.cc", |
217 ] | 218 ] |
218 deps += [ | 219 deps += [ |
219 ":gpu", | 220 ":gpu", |
220 ":profiler", | 221 ":profiler", |
221 "//content/public/common", | 222 "//content/public/common", |
222 ] | 223 ] |
223 } | 224 } |
224 } | 225 } |
225 # TODO(GYP): metrics_chromeos | 226 # TODO(GYP): metrics_chromeos |
OLD | NEW |