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 import("//ios/chrome/test/earl_grey/chrome_ios_eg_test.gni") | 5 import("//ios/chrome/test/earl_grey/chrome_ios_eg_test.gni") |
6 | 6 |
7 group("all_tests") { | 7 group("all_tests") { |
8 testonly = true | 8 testonly = true |
9 deps = [ | 9 deps = [ |
10 ":ios_chrome_device_check_egtests", | 10 ":ios_chrome_device_check_egtests", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "//ios/chrome/browser/ui/settings:settings", | 176 "//ios/chrome/browser/ui/settings:settings", |
177 "//ios/chrome/browser/ui/static_content", | 177 "//ios/chrome/browser/ui/static_content", |
178 "//ios/chrome/browser/ui/toolbar", | 178 "//ios/chrome/browser/ui/toolbar", |
179 "//ios/chrome/browser/ui/tools_menu", | 179 "//ios/chrome/browser/ui/tools_menu", |
180 "//ios/chrome/test/app:test_support", | 180 "//ios/chrome/test/app:test_support", |
181 "//ios/testing:ios_test_support", | 181 "//ios/testing:ios_test_support", |
182 "//ios/testing/earl_grey:earl_grey_support", | 182 "//ios/testing/earl_grey:earl_grey_support", |
183 "//ios/third_party/material_components_ios", | 183 "//ios/third_party/material_components_ios", |
184 "//ios/web", | 184 "//ios/web", |
185 "//ios/web:earl_grey_test_support", | 185 "//ios/web:earl_grey_test_support", |
186 "//ios/web:test_support", | 186 "//ios/web/public/test:test_support", |
| 187 "//ios/web/public/test/response_providers:test_support", |
187 "//ui/base", | 188 "//ui/base", |
188 "//ui/base:test_support", | 189 "//ui/base:test_support", |
189 "//url", | 190 "//url", |
190 ] | 191 ] |
191 | 192 |
192 public_deps = [ | 193 public_deps = [ |
193 "//build/config/ios:xctest", | 194 "//build/config/ios:xctest", |
194 "//ios/third_party/earl_grey", | 195 "//ios/third_party/earl_grey", |
| 196 "//ios/web/public/test/fakes:test_support", |
195 ] | 197 ] |
196 | 198 |
197 libs = [ | 199 libs = [ |
198 "OCHamcrest.framework", | 200 "OCHamcrest.framework", |
199 "WebKit.framework", | 201 "WebKit.framework", |
200 "XCTest.framework", | 202 "XCTest.framework", |
201 ] | 203 ] |
202 } | 204 } |
203 | 205 |
204 source_set("hooks") { | 206 source_set("hooks") { |
205 configs += [ "//build/config/compiler:enable_arc" ] | 207 configs += [ "//build/config/compiler:enable_arc" ] |
206 testonly = true | 208 testonly = true |
207 sources = [ | 209 sources = [ |
208 "eg_tests_hook.mm", | 210 "eg_tests_hook.mm", |
209 ] | 211 ] |
210 deps = [ | 212 deps = [ |
211 "//ios/chrome/app:tests_hook", | 213 "//ios/chrome/app:tests_hook", |
212 ] | 214 ] |
213 } | 215 } |
OLD | NEW |