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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 deps = [ | 140 deps = [ |
141 ":metrics", | 141 ":metrics", |
142 ":metrics_internal", | 142 ":metrics_internal", |
143 "//base", | 143 "//base", |
144 "//base/test:test_support", | 144 "//base/test:test_support", |
145 "//ios/chrome/browser/tabs", | 145 "//ios/chrome/browser/tabs", |
146 "//ios/chrome/browser/ui", | 146 "//ios/chrome/browser/ui", |
147 "//ios/testing:ocmock_support", | 147 "//ios/testing:ocmock_support", |
148 "//ios/web", | 148 "//ios/web", |
149 "//ios/web/public/test", | 149 "//ios/web/public/test", |
| 150 "//ios/web/public/test/fakes", |
150 "//testing/gtest", | 151 "//testing/gtest", |
151 "//third_party/ocmock", | 152 "//third_party/ocmock", |
152 ] | 153 ] |
153 } | 154 } |
154 | 155 |
155 source_set("eg_tests") { | 156 source_set("eg_tests") { |
156 configs += [ "//build/config/compiler:enable_arc" ] | 157 configs += [ "//build/config/compiler:enable_arc" ] |
157 testonly = true | 158 testonly = true |
158 sources = [ | 159 sources = [ |
159 "tab_usage_recorder_egtest.mm", | 160 "tab_usage_recorder_egtest.mm", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 "//ios/chrome/app/strings", | 211 "//ios/chrome/app/strings", |
211 "//ios/chrome/browser/ui", | 212 "//ios/chrome/browser/ui", |
212 "//ios/chrome/browser/ui/tools_menu", | 213 "//ios/chrome/browser/ui/tools_menu", |
213 "//ios/chrome/test/app:test_support", | 214 "//ios/chrome/test/app:test_support", |
214 "//ios/chrome/test/earl_grey:test_support", | 215 "//ios/chrome/test/earl_grey:test_support", |
215 "//ios/testing:ios_test_support", | 216 "//ios/testing:ios_test_support", |
216 "//ui/base", | 217 "//ui/base", |
217 ] | 218 ] |
218 configs += [ "//build/config/compiler:enable_arc" ] | 219 configs += [ "//build/config/compiler:enable_arc" ] |
219 } | 220 } |
OLD | NEW |