| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "chrome_test_case.mm", | 157 "chrome_test_case.mm", |
| 158 "chrome_util.h", | 158 "chrome_util.h", |
| 159 "chrome_util.mm", | 159 "chrome_util.mm", |
| 160 ] | 160 ] |
| 161 | 161 |
| 162 deps = [ | 162 deps = [ |
| 163 "//base", | 163 "//base", |
| 164 "//base/test:test_support", | 164 "//base/test:test_support", |
| 165 "//components/strings", | 165 "//components/strings", |
| 166 "//ios/chrome/app/strings", | 166 "//ios/chrome/app/strings", |
| 167 "//ios/chrome/browser/ui:ui", | 167 "//ios/chrome/browser/ui", |
| 168 "//ios/chrome/browser/ui/collection_view/cells", | 168 "//ios/chrome/browser/ui/collection_view/cells", |
| 169 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 169 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 170 "//ios/chrome/browser/ui/static_content", | 170 "//ios/chrome/browser/ui/static_content", |
| 171 "//ios/chrome/browser/ui/toolbar", | 171 "//ios/chrome/browser/ui/toolbar", |
| 172 "//ios/chrome/browser/ui/tools_menu", | 172 "//ios/chrome/browser/ui/tools_menu", |
| 173 "//ios/chrome/test/app:test_support", | 173 "//ios/chrome/test/app:test_support", |
| 174 "//ios/testing:ios_test_support", | 174 "//ios/testing:ios_test_support", |
| 175 "//ios/third_party/material_components_ios", | 175 "//ios/third_party/material_components_ios", |
| 176 "//ios/web", | 176 "//ios/web", |
| 177 "//ios/web:earl_grey_test_support", | 177 "//ios/web:earl_grey_test_support", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 194 | 194 |
| 195 source_set("hooks") { | 195 source_set("hooks") { |
| 196 testonly = true | 196 testonly = true |
| 197 sources = [ | 197 sources = [ |
| 198 "eg_tests_hook.mm", | 198 "eg_tests_hook.mm", |
| 199 ] | 199 ] |
| 200 deps = [ | 200 deps = [ |
| 201 "//ios/chrome/app:tests_hook", | 201 "//ios/chrome/app:tests_hook", |
| 202 ] | 202 ] |
| 203 } | 203 } |
| OLD | NEW |