| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("ios_test_support") { | 8 source_set("ios_test_support") { |
| 9 configs += [ "//build/config/compiler:enable_arc" ] |
| 9 testonly = true | 10 testonly = true |
| 10 | 11 |
| 11 deps = [ | 12 deps = [ |
| 12 "//base/test:test_support", | 13 "//base/test:test_support", |
| 13 ] | 14 ] |
| 14 | 15 |
| 15 sources = [ | 16 sources = [ |
| 16 "wait_util.h", | 17 "wait_util.h", |
| 17 "wait_util.mm", | 18 "wait_util.mm", |
| 18 ] | 19 ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 45 "//testing/gtest", | 46 "//testing/gtest", |
| 46 "//third_party/ocmock", | 47 "//third_party/ocmock", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 sources = [ | 50 sources = [ |
| 50 "ocmock_complex_type_helper_unittest.mm", | 51 "ocmock_complex_type_helper_unittest.mm", |
| 51 ] | 52 ] |
| 52 | 53 |
| 53 assert_no_deps = ios_assert_no_deps | 54 assert_no_deps = ios_assert_no_deps |
| 54 } | 55 } |
| OLD | NEW |