| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 deps = [ | 166 deps = [ |
| 167 "//base", | 167 "//base", |
| 168 "//base/test:test_support", | 168 "//base/test:test_support", |
| 169 "//components/strings", | 169 "//components/strings", |
| 170 "//ios/chrome/app/strings", | 170 "//ios/chrome/app/strings", |
| 171 "//ios/chrome/browser/ui", | 171 "//ios/chrome/browser/ui", |
| 172 "//ios/chrome/browser/ui/collection_view/cells", | 172 "//ios/chrome/browser/ui/collection_view/cells", |
| 173 "//ios/chrome/browser/ui/commands:commands", | 173 "//ios/chrome/browser/ui/commands:commands", |
| 174 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 174 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 175 "//ios/chrome/browser/ui/settings:settings", |
| 176 "//ios/chrome/browser/ui/settings:settings_arc", |
| 175 "//ios/chrome/browser/ui/static_content", | 177 "//ios/chrome/browser/ui/static_content", |
| 176 "//ios/chrome/browser/ui/toolbar", | 178 "//ios/chrome/browser/ui/toolbar", |
| 177 "//ios/chrome/browser/ui/tools_menu", | 179 "//ios/chrome/browser/ui/tools_menu", |
| 178 "//ios/chrome/test/app:test_support", | 180 "//ios/chrome/test/app:test_support", |
| 179 "//ios/testing:ios_test_support", | 181 "//ios/testing:ios_test_support", |
| 180 "//ios/testing/earl_grey:earl_grey_support", | 182 "//ios/testing/earl_grey:earl_grey_support", |
| 181 "//ios/third_party/material_components_ios", | 183 "//ios/third_party/material_components_ios", |
| 182 "//ios/web", | 184 "//ios/web", |
| 183 "//ios/web:earl_grey_test_support", | 185 "//ios/web:earl_grey_test_support", |
| 184 "//ios/web:test_support", | 186 "//ios/web:test_support", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 201 | 203 |
| 202 source_set("hooks") { | 204 source_set("hooks") { |
| 203 testonly = true | 205 testonly = true |
| 204 sources = [ | 206 sources = [ |
| 205 "eg_tests_hook.mm", | 207 "eg_tests_hook.mm", |
| 206 ] | 208 ] |
| 207 deps = [ | 209 deps = [ |
| 208 "//ios/chrome/app:tests_hook", | 210 "//ios/chrome/app:tests_hook", |
| 209 ] | 211 ] |
| 210 } | 212 } |
| OLD | NEW |