| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("all_tests") { | 9 group("all_tests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 configs += [ "//build/config/compiler:enable_arc" ] | 38 configs += [ "//build/config/compiler:enable_arc" ] |
| 39 | 39 |
| 40 assert_no_deps = ios_assert_no_deps | 40 assert_no_deps = ios_assert_no_deps |
| 41 } | 41 } |
| 42 | 42 |
| 43 source_set("test_support") { | 43 source_set("test_support") { |
| 44 testonly = true | 44 testonly = true |
| 45 sources = [ | 45 sources = [ |
| 46 "observer.h", | 46 "observer.h", |
| 47 "observer.mm", | 47 "observer.mm", |
| 48 "web_view_interaction_test_util.h", | 48 "web_view_test_util.h", |
| 49 "web_view_interaction_test_util.mm", | 49 "web_view_test_util.mm", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 "//ios/testing:ios_test_support", | 53 "//ios/testing:ios_test_support", |
| 54 "//ios/web_view:web_view+link", | 54 "//ios/web_view:web_view+link", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 configs += [ "//build/config/compiler:enable_arc" ] | 57 configs += [ "//build/config/compiler:enable_arc" ] |
| 58 } | 58 } |
| OLD | NEW |