| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "chrome_assertions.h", | 146 "chrome_assertions.h", |
| 147 "chrome_assertions.mm", | 147 "chrome_assertions.mm", |
| 148 "chrome_earl_grey.h", | 148 "chrome_earl_grey.h", |
| 149 "chrome_earl_grey.mm", | 149 "chrome_earl_grey.mm", |
| 150 "chrome_earl_grey_ui.h", | 150 "chrome_earl_grey_ui.h", |
| 151 "chrome_earl_grey_ui.mm", | 151 "chrome_earl_grey_ui.mm", |
| 152 "chrome_matchers.h", | 152 "chrome_matchers.h", |
| 153 "chrome_matchers.mm", | 153 "chrome_matchers.mm", |
| 154 "chrome_test_case.h", | 154 "chrome_test_case.h", |
| 155 "chrome_test_case.mm", | 155 "chrome_test_case.mm", |
| 156 "chrome_util.h", | |
| 157 "chrome_util.mm", | |
| 158 ] | 156 ] |
| 159 | 157 |
| 160 deps = [ | 158 deps = [ |
| 161 "//base", | 159 "//base", |
| 162 "//base/test:test_support", | 160 "//base/test:test_support", |
| 163 "//components/strings", | 161 "//components/strings", |
| 164 "//ios/chrome/app/strings", | 162 "//ios/chrome/app/strings", |
| 165 "//ios/chrome/browser/ui", | 163 "//ios/chrome/browser/ui", |
| 166 "//ios/chrome/browser/ui/collection_view/cells", | 164 "//ios/chrome/browser/ui/collection_view/cells", |
| 167 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 165 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 192 | 190 |
| 193 source_set("hooks") { | 191 source_set("hooks") { |
| 194 testonly = true | 192 testonly = true |
| 195 sources = [ | 193 sources = [ |
| 196 "eg_tests_hook.mm", | 194 "eg_tests_hook.mm", |
| 197 ] | 195 ] |
| 198 deps = [ | 196 deps = [ |
| 199 "//ios/chrome/app:tests_hook", | 197 "//ios/chrome/app:tests_hook", |
| 200 ] | 198 ] |
| 201 } | 199 } |
| OLD | NEW |