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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("ocmock_support") { | 7 source_set("ocmock_support") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
11 "//base", | 11 "//base", |
| 12 ] |
| 13 |
| 14 public_deps = [ |
12 "//third_party/google_toolbox_for_mac", | 15 "//third_party/google_toolbox_for_mac", |
13 "//third_party/ocmock", | 16 "//third_party/ocmock", |
14 ] | 17 ] |
15 | 18 |
16 sources = [ | 19 sources = [ |
17 "ocmock_complex_type_helper.h", | 20 "ocmock_complex_type_helper.h", |
18 "ocmock_complex_type_helper.mm", | 21 "ocmock_complex_type_helper.mm", |
19 ] | 22 ] |
20 } | 23 } |
21 | 24 |
22 test("ocmock_support_unittest") { | 25 test("ocmock_support_unittest") { |
23 deps = [ | 26 deps = [ |
24 "//base/test:run_all_unittests", | 27 "//base/test:run_all_unittests", |
25 "//base/test:test_support", | 28 "//base/test:test_support", |
26 "//testing/gmock", | 29 "//testing/gmock", |
27 "//testing/gtest", | 30 "//testing/gtest", |
28 "//third_party/ocmock", | 31 "//third_party/ocmock", |
29 ":ocmock_support", | 32 ":ocmock_support", |
30 ] | 33 ] |
31 } | 34 } |
OLD | NEW |