| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 # Depends on all EarlGrey test suites to run all the FLAKY_ tests found. | 118 # Depends on all EarlGrey test suites to run all the FLAKY_ tests found. |
| 119 # When adding a new test application, please follow the same pattern. | 119 # When adding a new test application, please follow the same pattern. |
| 120 ":ios_chrome_integration_egtests_deps_group", | 120 ":ios_chrome_integration_egtests_deps_group", |
| 121 ":ios_chrome_settings_egtests_deps_group", | 121 ":ios_chrome_settings_egtests_deps_group", |
| 122 ":ios_chrome_ui_egtests_deps_group", | 122 ":ios_chrome_ui_egtests_deps_group", |
| 123 ":ios_chrome_web_egtests_deps_group", | 123 ":ios_chrome_web_egtests_deps_group", |
| 124 ] | 124 ] |
| 125 } | 125 } |
| 126 | 126 |
| 127 chrome_ios_eg_test("ios_chrome_smoke_egtests") { | 127 chrome_ios_eg_test("ios_chrome_smoke_egtests") { |
| 128 configs += [ "//build/config/compiler:enable_arc" ] |
| 128 sources = [ | 129 sources = [ |
| 129 "smoke_egtest.mm", | 130 "smoke_egtest.mm", |
| 130 ] | 131 ] |
| 131 deps = [ | 132 deps = [ |
| 132 ":test_support", | 133 ":test_support", |
| 133 "//ios/chrome/test/app:test_support", | 134 "//ios/chrome/test/app:test_support", |
| 134 "//ios/third_party/earl_grey", | 135 "//ios/third_party/earl_grey", |
| 135 ] | 136 ] |
| 136 libs = [ "XCTest.framework" ] | 137 libs = [ "XCTest.framework" ] |
| 137 } | 138 } |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 source_set("hooks") { | 205 source_set("hooks") { |
| 205 configs += [ "//build/config/compiler:enable_arc" ] | 206 configs += [ "//build/config/compiler:enable_arc" ] |
| 206 testonly = true | 207 testonly = true |
| 207 sources = [ | 208 sources = [ |
| 208 "eg_tests_hook.mm", | 209 "eg_tests_hook.mm", |
| 209 ] | 210 ] |
| 210 deps = [ | 211 deps = [ |
| 211 "//ios/chrome/app:tests_hook", | 212 "//ios/chrome/app:tests_hook", |
| 212 ] | 213 ] |
| 213 } | 214 } |
| OLD | NEW |