| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ] | 195 ] |
| 196 | 196 |
| 197 libs = [ | 197 libs = [ |
| 198 "OCHamcrest.framework", | 198 "OCHamcrest.framework", |
| 199 "WebKit.framework", | 199 "WebKit.framework", |
| 200 "XCTest.framework", | 200 "XCTest.framework", |
| 201 ] | 201 ] |
| 202 } | 202 } |
| 203 | 203 |
| 204 source_set("hooks") { | 204 source_set("hooks") { |
| 205 configs += [ "//build/config/compiler:enable_arc" ] |
| 205 testonly = true | 206 testonly = true |
| 206 sources = [ | 207 sources = [ |
| 207 "eg_tests_hook.mm", | 208 "eg_tests_hook.mm", |
| 208 ] | 209 ] |
| 209 deps = [ | 210 deps = [ |
| 210 "//ios/chrome/app:tests_hook", | 211 "//ios/chrome/app:tests_hook", |
| 211 ] | 212 ] |
| 212 } | 213 } |
| OLD | NEW |