| 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", | |
| 17 "ios_chrome_origins_seen_service_factory.h", | |
| 18 "ios_chrome_stability_metrics_provider.h", | 16 "ios_chrome_stability_metrics_provider.h", |
| 19 "ios_chrome_stability_metrics_provider.mm", | 17 "ios_chrome_stability_metrics_provider.mm", |
| 20 "mobile_session_shutdown_metrics_provider.h", | 18 "mobile_session_shutdown_metrics_provider.h", |
| 21 "mobile_session_shutdown_metrics_provider.mm", | 19 "mobile_session_shutdown_metrics_provider.mm", |
| 22 "previous_session_info.h", | 20 "previous_session_info.h", |
| 23 "previous_session_info.mm", | 21 "previous_session_info.mm", |
| 24 "previous_session_info_private.h", | 22 "previous_session_info_private.h", |
| 25 ] | 23 ] |
| 26 deps = [ | 24 deps = [ |
| 27 "//base", | 25 "//base", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//ios/chrome/test/app:test_support", | 169 "//ios/chrome/test/app:test_support", |
| 172 "//ios/chrome/test/earl_grey:test_support", | 170 "//ios/chrome/test/earl_grey:test_support", |
| 173 "//ios/testing:ios_test_support", | 171 "//ios/testing:ios_test_support", |
| 174 "//ios/third_party/earl_grey", | 172 "//ios/third_party/earl_grey", |
| 175 "//ios/web:earl_grey_test_support", | 173 "//ios/web:earl_grey_test_support", |
| 176 "//ios/web:test_support", | 174 "//ios/web:test_support", |
| 177 "//ui/base", | 175 "//ui/base", |
| 178 ] | 176 ] |
| 179 libs = [ "XCTest.framework" ] | 177 libs = [ "XCTest.framework" ] |
| 180 } | 178 } |
| OLD | NEW |