| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("metrics") { | 5 source_set("metrics") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "field_trial_synchronizer.cc", | 8 "field_trial_synchronizer.cc", |
| 9 "field_trial_synchronizer.h", | 9 "field_trial_synchronizer.h", |
| 10 "ios_chrome_metrics_service_accessor.cc", | 10 "ios_chrome_metrics_service_accessor.cc", |
| 11 "ios_chrome_metrics_service_accessor.h", | 11 "ios_chrome_metrics_service_accessor.h", |
| 12 "ios_chrome_metrics_service_client.h", | 12 "ios_chrome_metrics_service_client.h", |
| 13 "ios_chrome_metrics_service_client.mm", | 13 "ios_chrome_metrics_service_client.mm", |
| 14 "ios_chrome_metrics_services_manager_client.h", | 14 "ios_chrome_metrics_services_manager_client.h", |
| 15 "ios_chrome_metrics_services_manager_client.mm", | 15 "ios_chrome_metrics_services_manager_client.mm", |
| 16 "ios_chrome_origins_seen_service_factory.cc", | 16 "ios_chrome_origins_seen_service_factory.cc", |
| 17 "ios_chrome_origins_seen_service_factory.h", | 17 "ios_chrome_origins_seen_service_factory.h", |
| 18 "ios_chrome_stability_metrics_provider.cc", | 18 "ios_chrome_stability_metrics_provider.cc", |
| 19 "ios_chrome_stability_metrics_provider.h", | 19 "ios_chrome_stability_metrics_provider.h", |
| 20 "mobile_session_shutdown_metrics_provider.h", | 20 "mobile_session_shutdown_metrics_provider.h", |
| 21 "mobile_session_shutdown_metrics_provider.mm", | 21 "mobile_session_shutdown_metrics_provider.mm", |
| 22 "previous_session_info.h", | 22 "previous_session_info.h", |
| 23 "previous_session_info.mm", | 23 "previous_session_info.mm", |
| 24 "previous_session_info_private.h", | 24 "previous_session_info_private.h", |
| 25 ] | 25 ] |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//components/browser_sync", |
| 28 "//components/crash/core/common", | 29 "//components/crash/core/common", |
| 29 "//components/keyed_service/core", | 30 "//components/keyed_service/core", |
| 30 "//components/keyed_service/ios", | 31 "//components/keyed_service/ios", |
| 31 "//components/metrics", | 32 "//components/metrics", |
| 32 "//components/metrics:net", | 33 "//components/metrics:net", |
| 33 "//components/metrics:profiler", | 34 "//components/metrics:profiler", |
| 34 "//components/metrics:ui", | 35 "//components/metrics:ui", |
| 35 "//components/metrics_services_manager", | 36 "//components/metrics_services_manager", |
| 36 "//components/navigation_metrics", | 37 "//components/navigation_metrics", |
| 37 "//components/omnibox/browser", | 38 "//components/omnibox/browser", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "//ios/chrome/test/app:test_support", | 154 "//ios/chrome/test/app:test_support", |
| 154 "//ios/chrome/test/earl_grey:test_support", | 155 "//ios/chrome/test/earl_grey:test_support", |
| 155 "//ios/testing:ios_test_support", | 156 "//ios/testing:ios_test_support", |
| 156 "//ios/third_party/earl_grey", | 157 "//ios/third_party/earl_grey", |
| 157 "//ios/web:earl_grey_test_support", | 158 "//ios/web:earl_grey_test_support", |
| 158 "//ios/web:test_support", | 159 "//ios/web:test_support", |
| 159 "//ui/base", | 160 "//ui/base", |
| 160 ] | 161 ] |
| 161 libs = [ "XCTest.framework" ] | 162 libs = [ "XCTest.framework" ] |
| 162 } | 163 } |
| OLD | NEW |