| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//ios/chrome/browser/ui/bookmarks:eg_tests", | 53 "//ios/chrome/browser/ui/bookmarks:eg_tests", |
| 54 "//ios/chrome/browser/ui/dialogs:eg_tests", | 54 "//ios/chrome/browser/ui/dialogs:eg_tests", |
| 55 "//ios/chrome/browser/ui/find_bar:eg_tests", | 55 "//ios/chrome/browser/ui/find_bar:eg_tests", |
| 56 "//ios/chrome/browser/ui/first_run:eg_tests", | 56 "//ios/chrome/browser/ui/first_run:eg_tests", |
| 57 "//ios/chrome/browser/ui/history:eg_tests", | 57 "//ios/chrome/browser/ui/history:eg_tests", |
| 58 "//ios/chrome/browser/ui/infobars:eg_tests", | 58 "//ios/chrome/browser/ui/infobars:eg_tests", |
| 59 "//ios/chrome/browser/ui/ntp:eg_tests", | 59 "//ios/chrome/browser/ui/ntp:eg_tests", |
| 60 "//ios/chrome/browser/ui/ntp/recent_tabs:eg_tests", | 60 "//ios/chrome/browser/ui/ntp/recent_tabs:eg_tests", |
| 61 "//ios/chrome/browser/ui/print:eg_tests", | 61 "//ios/chrome/browser/ui/print:eg_tests", |
| 62 "//ios/chrome/browser/ui/qr_scanner:eg_tests", | 62 "//ios/chrome/browser/ui/qr_scanner:eg_tests", |
| 63 "//ios/chrome/browser/ui/sad_tab:eg_tests", |
| 63 "//ios/chrome/browser/ui/stack_view:eg_tests", | 64 "//ios/chrome/browser/ui/stack_view:eg_tests", |
| 64 "//ios/chrome/browser/ui/sync:eg_tests", | 65 "//ios/chrome/browser/ui/sync:eg_tests", |
| 65 "//ios/chrome/browser/ui/tab_switcher:eg_tests", | 66 "//ios/chrome/browser/ui/tab_switcher:eg_tests", |
| 66 "//ios/chrome/browser/ui/tabs:eg_tests", | 67 "//ios/chrome/browser/ui/tabs:eg_tests", |
| 67 "//ios/chrome/browser/ui/toolbar:eg_tests", | 68 "//ios/chrome/browser/ui/toolbar:eg_tests", |
| 68 "//ios/chrome/browser/ui/tools_menu:eg_tests", | 69 "//ios/chrome/browser/ui/tools_menu:eg_tests", |
| 69 "//ios/chrome/browser/ui/webui:eg_tests", | 70 "//ios/chrome/browser/ui/webui:eg_tests", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| 72 | 73 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 source_set("hooks") { | 209 source_set("hooks") { |
| 209 configs += [ "//build/config/compiler:enable_arc" ] | 210 configs += [ "//build/config/compiler:enable_arc" ] |
| 210 testonly = true | 211 testonly = true |
| 211 sources = [ | 212 sources = [ |
| 212 "eg_tests_hook.mm", | 213 "eg_tests_hook.mm", |
| 213 ] | 214 ] |
| 214 deps = [ | 215 deps = [ |
| 215 "//ios/chrome/app:tests_hook", | 216 "//ios/chrome/app:tests_hook", |
| 216 ] | 217 ] |
| 217 } | 218 } |
| OLD | NEW |