| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 | 117 |
| 118 # GYP version: components/metrics.gypi:metrics_profiler | 118 # GYP version: components/metrics.gypi:metrics_profiler |
| 119 source_set("profiler") { | 119 source_set("profiler") { |
| 120 sources = [ | 120 sources = [ |
| 121 "profiler/profiler_metrics_provider.cc", | 121 "profiler/profiler_metrics_provider.cc", |
| 122 "profiler/profiler_metrics_provider.h", | 122 "profiler/profiler_metrics_provider.h", |
| 123 "profiler/tracking_synchronizer.cc", | 123 "profiler/tracking_synchronizer.cc", |
| 124 "profiler/tracking_synchronizer.h", | 124 "profiler/tracking_synchronizer.h", |
| 125 "profiler/tracking_synchronizer_observer.cc", |
| 125 "profiler/tracking_synchronizer_observer.h", | 126 "profiler/tracking_synchronizer_observer.h", |
| 126 ] | 127 ] |
| 127 | 128 |
| 128 public_deps = [ | 129 public_deps = [ |
| 129 ":metrics", | 130 ":metrics", |
| 130 ] | 131 ] |
| 131 deps = [ | 132 deps = [ |
| 132 "//base", | 133 "//base", |
| 133 "//components/variations", | 134 "//components/variations", |
| 134 "//content/public/browser", | 135 "//content/public/browser", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ":profiler", | 191 ":profiler", |
| 191 ":test_support", | 192 ":test_support", |
| 192 "//base:prefs_test_support", | 193 "//base:prefs_test_support", |
| 193 "//base/test:test_support", | 194 "//base/test:test_support", |
| 194 "//components/variations", | 195 "//components/variations", |
| 195 "//content/public/common", | 196 "//content/public/common", |
| 196 "//testing/gtest", | 197 "//testing/gtest", |
| 197 ] | 198 ] |
| 198 } | 199 } |
| 199 # TODO(GYP): metrics_chromeos | 200 # TODO(GYP): metrics_chromeos |
| OLD | NEW |