| 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", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 } | 117 } |
| 118 | 118 |
| 119 source_set("metrics_internal_arc") { | 119 source_set("metrics_internal_arc") { |
| 120 sources = [ | 120 sources = [ |
| 121 "tab_usage_recorder_web_state_list_observer.h", | 121 "tab_usage_recorder_web_state_list_observer.h", |
| 122 "tab_usage_recorder_web_state_list_observer.mm", | 122 "tab_usage_recorder_web_state_list_observer.mm", |
| 123 ] | 123 ] |
| 124 deps = [ | 124 deps = [ |
| 125 "//base", | 125 "//base", |
| 126 "//ios/chrome/browser/tabs", | 126 "//ios/chrome/browser/tabs", |
| 127 "//ios/shared/chrome/browser/tabs", | 127 "//ios/chrome/browser/web_state_list", |
| 128 ] | 128 ] |
| 129 configs += [ "//build/config/compiler:enable_arc" ] | 129 configs += [ "//build/config/compiler:enable_arc" ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 source_set("unit_tests_internal") { | 132 source_set("unit_tests_internal") { |
| 133 testonly = true | 133 testonly = true |
| 134 sources = [ | 134 sources = [ |
| 135 "first_user_action_recorder_unittest.cc", | 135 "first_user_action_recorder_unittest.cc", |
| 136 "size_class_recorder_unittest.mm", | 136 "size_class_recorder_unittest.mm", |
| 137 "tab_usage_recorder_unittest.mm", | 137 "tab_usage_recorder_unittest.mm", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//ios/chrome/test/app:test_support", | 171 "//ios/chrome/test/app:test_support", |
| 172 "//ios/chrome/test/earl_grey:test_support", | 172 "//ios/chrome/test/earl_grey:test_support", |
| 173 "//ios/testing:ios_test_support", | 173 "//ios/testing:ios_test_support", |
| 174 "//ios/third_party/earl_grey", | 174 "//ios/third_party/earl_grey", |
| 175 "//ios/web:earl_grey_test_support", | 175 "//ios/web:earl_grey_test_support", |
| 176 "//ios/web:test_support", | 176 "//ios/web:test_support", |
| 177 "//ui/base", | 177 "//ui/base", |
| 178 ] | 178 ] |
| 179 libs = [ "XCTest.framework" ] | 179 libs = [ "XCTest.framework" ] |
| 180 } | 180 } |
| OLD | NEW |