| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 ] | 122 ] |
| 123 deps = [ | 123 deps = [ |
| 124 "//base", | 124 "//base", |
| 125 "//ios/chrome/browser/tabs", | 125 "//ios/chrome/browser/tabs", |
| 126 "//ios/chrome/browser/web_state_list", | 126 "//ios/chrome/browser/web_state_list", |
| 127 ] | 127 ] |
| 128 configs += [ "//build/config/compiler:enable_arc" ] | 128 configs += [ "//build/config/compiler:enable_arc" ] |
| 129 } | 129 } |
| 130 | 130 |
| 131 source_set("unit_tests_internal") { | 131 source_set("unit_tests_internal") { |
| 132 configs += [ "//build/config/compiler:enable_arc" ] |
| 132 testonly = true | 133 testonly = true |
| 133 sources = [ | 134 sources = [ |
| 134 "first_user_action_recorder_unittest.cc", | 135 "first_user_action_recorder_unittest.cc", |
| 135 "size_class_recorder_unittest.mm", | 136 "size_class_recorder_unittest.mm", |
| 136 "tab_usage_recorder_unittest.mm", | 137 "tab_usage_recorder_unittest.mm", |
| 137 ] | 138 ] |
| 138 deps = [ | 139 deps = [ |
| 139 ":metrics", | 140 ":metrics", |
| 140 ":metrics_internal", | 141 ":metrics_internal", |
| 141 "//base", | 142 "//base", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//ios/chrome/app/strings", | 208 "//ios/chrome/app/strings", |
| 208 "//ios/chrome/browser/ui", | 209 "//ios/chrome/browser/ui", |
| 209 "//ios/chrome/browser/ui/tools_menu", | 210 "//ios/chrome/browser/ui/tools_menu", |
| 210 "//ios/chrome/test/app:test_support", | 211 "//ios/chrome/test/app:test_support", |
| 211 "//ios/chrome/test/earl_grey:test_support", | 212 "//ios/chrome/test/earl_grey:test_support", |
| 212 "//ios/testing:ios_test_support", | 213 "//ios/testing:ios_test_support", |
| 213 "//ui/base", | 214 "//ui/base", |
| 214 ] | 215 ] |
| 215 configs += [ "//build/config/compiler:enable_arc" ] | 216 configs += [ "//build/config/compiler:enable_arc" ] |
| 216 } | 217 } |
| OLD | NEW |