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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "//components/metrics:test_support", | 76 "//components/metrics:test_support", |
77 "//components/prefs", | 77 "//components/prefs", |
78 "//components/prefs:test_support", | 78 "//components/prefs:test_support", |
79 "//components/version_info", | 79 "//components/version_info", |
80 "//ios/chrome/test:test_support", | 80 "//ios/chrome/test:test_support", |
81 "//testing/gtest", | 81 "//testing/gtest", |
82 ] | 82 ] |
83 } | 83 } |
84 | 84 |
85 source_set("metrics_internal") { | 85 source_set("metrics_internal") { |
| 86 configs += [ "//build/config/compiler:enable_arc" ] |
86 sources = [ | 87 sources = [ |
87 "first_user_action_recorder.cc", | 88 "first_user_action_recorder.cc", |
88 "first_user_action_recorder.h", | 89 "first_user_action_recorder.h", |
89 "new_tab_page_uma.h", | 90 "new_tab_page_uma.h", |
90 "new_tab_page_uma.mm", | 91 "new_tab_page_uma.mm", |
91 "size_class_recorder.h", | 92 "size_class_recorder.h", |
92 "size_class_recorder.mm", | 93 "size_class_recorder.mm", |
93 "size_class_recorder_private.h", | 94 "size_class_recorder_private.h", |
94 "tab_usage_recorder.h", | 95 "tab_usage_recorder.h", |
95 "tab_usage_recorder.mm", | 96 "tab_usage_recorder.mm", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "//ios/chrome/test/app:test_support", | 170 "//ios/chrome/test/app:test_support", |
170 "//ios/chrome/test/earl_grey:test_support", | 171 "//ios/chrome/test/earl_grey:test_support", |
171 "//ios/testing:ios_test_support", | 172 "//ios/testing:ios_test_support", |
172 "//ios/third_party/earl_grey", | 173 "//ios/third_party/earl_grey", |
173 "//ios/web:earl_grey_test_support", | 174 "//ios/web:earl_grey_test_support", |
174 "//ios/web:test_support", | 175 "//ios/web:test_support", |
175 "//ui/base", | 176 "//ui/base", |
176 ] | 177 ] |
177 libs = [ "XCTest.framework" ] | 178 libs = [ "XCTest.framework" ] |
178 } | 179 } |
OLD | NEW |