| 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 30 matching lines...) Expand all Loading... |
| 41 "metrics_service_accessor.cc", | 41 "metrics_service_accessor.cc", |
| 42 "metrics_service_accessor.h", | 42 "metrics_service_accessor.h", |
| 43 "metrics_service_client.cc", | 43 "metrics_service_client.cc", |
| 44 "metrics_service_client.h", | 44 "metrics_service_client.h", |
| 45 "metrics_state_manager.cc", | 45 "metrics_state_manager.cc", |
| 46 "metrics_state_manager.h", | 46 "metrics_state_manager.h", |
| 47 "metrics_switches.cc", | 47 "metrics_switches.cc", |
| 48 "metrics_switches.h", | 48 "metrics_switches.h", |
| 49 "persisted_logs.cc", | 49 "persisted_logs.cc", |
| 50 "persisted_logs.h", | 50 "persisted_logs.h", |
| 51 "url_constants.cc", |
| 52 "url_constants.h", |
| 51 ] | 53 ] |
| 52 | 54 |
| 53 public_deps = [ | 55 public_deps = [ |
| 54 "//components/metrics/proto", | 56 "//components/metrics/proto", |
| 55 ] | 57 ] |
| 56 deps = [ | 58 deps = [ |
| 57 "//base", | 59 "//base", |
| 58 "//base:i18n", | 60 "//base:i18n", |
| 59 "//base:prefs", | 61 "//base:prefs", |
| 60 "//components/variations", | 62 "//components/variations", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 ":profiler", | 187 ":profiler", |
| 186 ":test_support", | 188 ":test_support", |
| 187 "//base:prefs_test_support", | 189 "//base:prefs_test_support", |
| 188 "//base/test:test_support", | 190 "//base/test:test_support", |
| 189 "//components/variations", | 191 "//components/variations", |
| 190 "//content/public/common", | 192 "//content/public/common", |
| 191 "//testing/gtest", | 193 "//testing/gtest", |
| 192 ] | 194 ] |
| 193 } | 195 } |
| 194 # TODO(GYP): metrics_chromeos | 196 # TODO(GYP): metrics_chromeos |
| OLD | NEW |