| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "metrics_service_client.cc", | 50 "metrics_service_client.cc", |
| 51 "metrics_service_client.h", | 51 "metrics_service_client.h", |
| 52 "metrics_state_manager.cc", | 52 "metrics_state_manager.cc", |
| 53 "metrics_state_manager.h", | 53 "metrics_state_manager.h", |
| 54 "metrics_switches.cc", | 54 "metrics_switches.cc", |
| 55 "metrics_switches.h", | 55 "metrics_switches.h", |
| 56 "persisted_logs.cc", | 56 "persisted_logs.cc", |
| 57 "persisted_logs.h", | 57 "persisted_logs.h", |
| 58 "url_constants.cc", | 58 "url_constants.cc", |
| 59 "url_constants.h", | 59 "url_constants.h", |
| 60 "variations_seed_store.cc", |
| 61 "variations_seed_store.h", |
| 60 ] | 62 ] |
| 61 | 63 |
| 62 public_deps = [ | 64 public_deps = [ |
| 63 "//components/metrics/proto", | 65 "//components/metrics/proto", |
| 64 ] | 66 ] |
| 65 deps = [ | 67 deps = [ |
| 66 "//base", | 68 "//base", |
| 67 "//base:i18n", | 69 "//base:i18n", |
| 68 "//base:prefs", | 70 "//base:prefs", |
| 69 "//components/variations", | 71 "//components/variations", |
| 72 "//crypto", |
| 70 "//third_party/zlib", | 73 "//third_party/zlib", |
| 71 ] | 74 ] |
| 72 | 75 |
| 73 if (is_chromeos) { | 76 if (is_chromeos) { |
| 74 deps += [ ":serialization" ] | 77 deps += [ ":serialization" ] |
| 75 } | 78 } |
| 76 | 79 |
| 77 if (is_win) { | 80 if (is_win) { |
| 78 sources -= [ "machine_id_provider_stub.cc" ] | 81 sources -= [ "machine_id_provider_stub.cc" ] |
| 79 } | 82 } |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "machine_id_provider_win_unittest.cc", | 187 "machine_id_provider_win_unittest.cc", |
| 185 "metrics_hashes_unittest.cc", | 188 "metrics_hashes_unittest.cc", |
| 186 "metrics_log_manager_unittest.cc", | 189 "metrics_log_manager_unittest.cc", |
| 187 "metrics_log_unittest.cc", | 190 "metrics_log_unittest.cc", |
| 188 "metrics_reporting_scheduler_unittest.cc", | 191 "metrics_reporting_scheduler_unittest.cc", |
| 189 "metrics_service_unittest.cc", | 192 "metrics_service_unittest.cc", |
| 190 "metrics_state_manager_unittest.cc", | 193 "metrics_state_manager_unittest.cc", |
| 191 "persisted_logs_unittest.cc", | 194 "persisted_logs_unittest.cc", |
| 192 "profiler/profiler_metrics_provider_unittest.cc", | 195 "profiler/profiler_metrics_provider_unittest.cc", |
| 193 "profiler/tracking_synchronizer_unittest.cc", | 196 "profiler/tracking_synchronizer_unittest.cc", |
| 197 "variations_seed_store_unittest.cc", |
| 194 ] | 198 ] |
| 195 | 199 |
| 196 deps = [ | 200 deps = [ |
| 197 ":metrics", | 201 ":metrics", |
| 198 ":profiler", | 202 ":profiler", |
| 199 ":test_support", | 203 ":test_support", |
| 200 "//base:prefs_test_support", | 204 "//base:prefs_test_support", |
| 201 "//base/test:test_support", | 205 "//base/test:test_support", |
| 202 "//components/variations", | 206 "//components/variations", |
| 203 "//content/public/common", | 207 "//content/public/common", |
| 204 "//testing/gtest", | 208 "//testing/gtest", |
| 205 ] | 209 ] |
| 206 } | 210 } |
| 207 # TODO(GYP): metrics_chromeos | 211 # TODO(GYP): metrics_chromeos |
| OLD | NEW |