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