| 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 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 "//base/test:test_support", | 12 "//base/test:test_support", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "wait_util.h", | 16 "wait_util.h", |
| 17 "wait_util.mm", | 17 "wait_util.mm", |
| 18 ] | 18 ] |
| 19 } | 19 } |
| 20 | 20 |
| 21 source_set("ocmock_support") { | 21 source_set("ocmock_support") { |
| 22 configs += [ "//build/config/compiler:enable_arc" ] |
| 22 testonly = true | 23 testonly = true |
| 23 | 24 |
| 24 deps = [ | 25 deps = [ |
| 25 "//base", | 26 "//base", |
| 26 ] | 27 ] |
| 27 | 28 |
| 28 public_deps = [ | 29 public_deps = [ |
| 29 "//third_party/google_toolbox_for_mac", | 30 "//third_party/google_toolbox_for_mac", |
| 30 "//third_party/ocmock", | 31 "//third_party/ocmock", |
| 31 ] | 32 ] |
| (...skipping 13 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 |