| 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 "test_io_thread.cc", | 16 "test_io_thread.cc", |
| 17 "test_io_thread.h", | 17 "test_io_thread.h", |
| 18 "test_utils.h", | 18 "test_utils.h", |
| 19 "test_utils_posix.cc", | 19 "test_utils_posix.cc", |
| 20 "test_utils_win.cc", | |
| 21 ] | 20 ] |
| 22 | 21 |
| 23 deps = [ | 22 deps = [ |
| 24 "//base", | 23 "//base", |
| 25 "//base/test:test_support", | 24 "//base/test:test_support", |
| 26 "//testing/gtest", | 25 "//testing/gtest", |
| 27 ] | 26 ] |
| 28 | 27 |
| 29 mojo_edk_deps = [ | 28 mojo_edk_deps = [ |
| 30 "mojo/edk/system", | 29 "mojo/edk/system", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "../../public/cpp/utility/tests", | 157 "../../public/cpp/utility/tests", |
| 159 ] | 158 ] |
| 160 } | 159 } |
| 161 | 160 |
| 162 test("mojo_system_impl_private_unittests") { | 161 test("mojo_system_impl_private_unittests") { |
| 163 deps = [ | 162 deps = [ |
| 164 ":run_all_unittests", | 163 ":run_all_unittests", |
| 165 "../../public/platform/native:system_impl_private_tests", | 164 "../../public/platform/native:system_impl_private_tests", |
| 166 ] | 165 ] |
| 167 } | 166 } |
| OLD | NEW |