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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "net/wifi_access_point_info_provider.h", | 106 "net/wifi_access_point_info_provider.h", |
107 "net/wifi_access_point_info_provider_chromeos.cc", | 107 "net/wifi_access_point_info_provider_chromeos.cc", |
108 "net/wifi_access_point_info_provider_chromeos.h", | 108 "net/wifi_access_point_info_provider_chromeos.h", |
109 ] | 109 ] |
110 | 110 |
111 public_deps = [ | 111 public_deps = [ |
112 ":metrics", | 112 ":metrics", |
113 ] | 113 ] |
114 deps = [ | 114 deps = [ |
115 "//base", | 115 "//base", |
| 116 "//components/data_use_measurement/core", |
116 "//net", | 117 "//net", |
117 "//url", | 118 "//url", |
118 ] | 119 ] |
119 } | 120 } |
120 | 121 |
121 # GYP version: components/metrics.gypi:metrics_profiler | 122 # GYP version: components/metrics.gypi:metrics_profiler |
122 source_set("profiler") { | 123 source_set("profiler") { |
123 sources = [ | 124 sources = [ |
124 "profiler/profiler_metrics_provider.cc", | 125 "profiler/profiler_metrics_provider.cc", |
125 "profiler/profiler_metrics_provider.h", | 126 "profiler/profiler_metrics_provider.h", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "//content/public/common", | 206 "//content/public/common", |
206 "//testing/gtest", | 207 "//testing/gtest", |
207 ] | 208 ] |
208 | 209 |
209 if (is_linux) { | 210 if (is_linux) { |
210 sources += [ "serialization/serialization_utils_unittest.cc" ] | 211 sources += [ "serialization/serialization_utils_unittest.cc" ] |
211 deps += [ ":serialization" ] | 212 deps += [ ":serialization" ] |
212 } | 213 } |
213 } | 214 } |
214 # TODO(GYP): metrics_chromeos | 215 # TODO(GYP): metrics_chromeos |
OLD | NEW |