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") { |
| 9 testonly = true |
| 10 |
| 11 deps = [ |
| 12 "//base/test:test_support", |
| 13 ] |
| 14 |
| 15 sources = [ |
| 16 "wait_util.h", |
| 17 "wait_util.mm", |
| 18 ] |
| 19 } |
| 20 |
8 source_set("ocmock_support") { | 21 source_set("ocmock_support") { |
9 testonly = true | 22 testonly = true |
10 | 23 |
11 deps = [ | 24 deps = [ |
12 "//base", | 25 "//base", |
13 ] | 26 ] |
14 | 27 |
15 public_deps = [ | 28 public_deps = [ |
16 "//third_party/google_toolbox_for_mac", | 29 "//third_party/google_toolbox_for_mac", |
17 "//third_party/ocmock", | 30 "//third_party/ocmock", |
(...skipping 10 matching lines...) Expand all Loading... |
28 ":ocmock_support", | 41 ":ocmock_support", |
29 "//base/test:run_all_unittests", | 42 "//base/test:run_all_unittests", |
30 "//base/test:test_support", | 43 "//base/test:test_support", |
31 "//testing/gmock", | 44 "//testing/gmock", |
32 "//testing/gtest", | 45 "//testing/gtest", |
33 "//third_party/ocmock", | 46 "//third_party/ocmock", |
34 ] | 47 ] |
35 | 48 |
36 assert_no_deps = ios_assert_no_deps | 49 assert_no_deps = ios_assert_no_deps |
37 } | 50 } |
OLD | NEW |