| 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", |
| 11 ":ios_chrome_external_url_egtests", |
| 11 ":ios_chrome_flaky_egtests", | 12 ":ios_chrome_flaky_egtests", |
| 12 ":ios_chrome_integration_egtests", | 13 ":ios_chrome_integration_egtests", |
| 13 ":ios_chrome_multitasking_egtests", | 14 ":ios_chrome_multitasking_egtests", |
| 14 ":ios_chrome_reading_list_egtests", | 15 ":ios_chrome_reading_list_egtests", |
| 15 ":ios_chrome_settings_egtests", | 16 ":ios_chrome_settings_egtests", |
| 16 ":ios_chrome_smoke_egtests", | 17 ":ios_chrome_smoke_egtests", |
| 17 ":ios_chrome_ui_egtests", | 18 ":ios_chrome_ui_egtests", |
| 18 ":ios_chrome_web_egtests", | 19 ":ios_chrome_web_egtests", |
| 19 ] | 20 ] |
| 20 } | 21 } |
| 21 | 22 |
| 22 chrome_ios_eg_test("ios_chrome_integration_egtests") { | 23 chrome_ios_eg_test("ios_chrome_integration_egtests") { |
| 23 deps = [ | 24 deps = [ |
| 24 "//ios/chrome/browser/autofill:eg_tests", | 25 "//ios/chrome/browser/autofill:eg_tests", |
| 25 "//ios/chrome/browser/context_menu:eg_tests", | 26 "//ios/chrome/browser/context_menu:eg_tests", |
| 26 "//ios/chrome/browser/device_sharing:eg_tests", | 27 "//ios/chrome/browser/device_sharing:eg_tests", |
| 27 "//ios/chrome/browser/metrics:eg_tests", | 28 "//ios/chrome/browser/metrics:eg_tests", |
| 28 "//ios/chrome/browser/net:eg_tests", | 29 "//ios/chrome/browser/net:eg_tests", |
| 29 "//ios/chrome/browser/translate:eg_tests", | |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 chrome_ios_eg_test("ios_chrome_reading_list_egtests") { | 33 chrome_ios_eg_test("ios_chrome_reading_list_egtests") { |
| 34 deps = [ | 34 deps = [ |
| 35 ":test_support", | 35 ":test_support", |
| 36 "//ios/chrome/browser/ui/reading_list:eg_tests", | 36 "//ios/chrome/browser/ui/reading_list:eg_tests", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "smoke_egtest.mm", | 128 "smoke_egtest.mm", |
| 129 ] | 129 ] |
| 130 deps = [ | 130 deps = [ |
| 131 ":test_support", | 131 ":test_support", |
| 132 "//ios/chrome/test/app:test_support", | 132 "//ios/chrome/test/app:test_support", |
| 133 "//ios/third_party/earl_grey", | 133 "//ios/third_party/earl_grey", |
| 134 ] | 134 ] |
| 135 libs = [ "XCTest.framework" ] | 135 libs = [ "XCTest.framework" ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 chrome_ios_eg_test("ios_chrome_external_url_egtests") { |
| 139 deps = [ |
| 140 "//ios/chrome/browser/translate:external_url_eg_tests", |
| 141 ] |
| 142 } |
| 143 |
| 138 source_set("test_support") { | 144 source_set("test_support") { |
| 139 configs += [ "//build/config/compiler:enable_arc" ] | 145 configs += [ "//build/config/compiler:enable_arc" ] |
| 140 testonly = true | 146 testonly = true |
| 141 sources = [ | 147 sources = [ |
| 142 "accessibility_util.h", | 148 "accessibility_util.h", |
| 143 "accessibility_util.mm", | 149 "accessibility_util.mm", |
| 144 "chrome_actions.h", | 150 "chrome_actions.h", |
| 145 "chrome_actions.mm", | 151 "chrome_actions.mm", |
| 146 "chrome_assertions.h", | 152 "chrome_assertions.h", |
| 147 "chrome_assertions.mm", | 153 "chrome_assertions.mm", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 testonly = true | 201 testonly = true |
| 196 sources = [ | 202 sources = [ |
| 197 "eg_tests_hook.mm", | 203 "eg_tests_hook.mm", |
| 198 ] | 204 ] |
| 199 deps = [ | 205 deps = [ |
| 200 "//base", | 206 "//base", |
| 201 "//ios/chrome/app:tests_hook", | 207 "//ios/chrome/app:tests_hook", |
| 202 "//ios/third_party/earl_grey", | 208 "//ios/third_party/earl_grey", |
| 203 ] | 209 ] |
| 204 } | 210 } |
| OLD | NEW |