OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 import("../../public/mojo.gni") | 6 import("../../public/mojo.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 mojo_edk_source_set("test_support") { | 9 mojo_edk_source_set("test_support") { |
10 testonly = true | 10 testonly = true |
11 sources = [ | 11 sources = [ |
12 "multiprocess_test_helper.cc", | 12 "multiprocess_test_helper.cc", |
13 "multiprocess_test_helper.h", | 13 "multiprocess_test_helper.h", |
14 "scoped_ipc_support.cc", | 14 "scoped_ipc_support.cc", |
15 "scoped_ipc_support.h", | 15 "scoped_ipc_support.h", |
| 16 "scoped_test_dir.cc", |
| 17 "scoped_test_dir.h", |
16 "test_io_thread.cc", | 18 "test_io_thread.cc", |
17 "test_io_thread.h", | 19 "test_io_thread.h", |
18 "test_utils.h", | 20 "test_utils.h", |
19 "test_utils_posix.cc", | 21 "test_utils_posix.cc", |
20 "test_utils_win.cc", | 22 "test_utils_win.cc", |
21 ] | 23 ] |
22 | 24 |
23 deps = [ | 25 deps = [ |
24 "//base", | 26 "//base", |
25 "//base/test:test_support", | 27 "//base/test:test_support", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "../../public/cpp/utility/tests", | 160 "../../public/cpp/utility/tests", |
159 ] | 161 ] |
160 } | 162 } |
161 | 163 |
162 test("mojo_system_impl_private_unittests") { | 164 test("mojo_system_impl_private_unittests") { |
163 deps = [ | 165 deps = [ |
164 ":run_all_unittests", | 166 ":run_all_unittests", |
165 "../../public/platform/native:system_impl_private_tests", | 167 "../../public/platform/native:system_impl_private_tests", |
166 ] | 168 ] |
167 } | 169 } |
OLD | NEW |