| 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 | 6 |
| 7 mojo_edk_source_set("test_support") { | 7 mojo_edk_source_set("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "multiprocess_test_helper.cc", | 10 "multiprocess_test_helper.cc", |
| 11 "multiprocess_test_helper.h", | 11 "multiprocess_test_helper.h", |
| 12 "scoped_ipc_support.cc", | 12 "scoped_ipc_support.cc", |
| 13 "scoped_ipc_support.h", | 13 "scoped_ipc_support.h", |
| 14 "scoped_test_dir.cc", | |
| 15 "scoped_test_dir.h", | |
| 16 "test_io_thread.cc", | |
| 17 "test_io_thread.h", | |
| 18 "test_utils.cc", | 14 "test_utils.cc", |
| 19 "test_utils.h", | 15 "test_utils.h", |
| 20 ] | 16 ] |
| 21 | 17 |
| 22 deps = [ | 18 deps = [ |
| 23 "//base", | 19 "//base", |
| 24 "//base/test:test_support", | 20 "//base/test:test_support", |
| 25 "//testing/gtest", | 21 "//testing/gtest", |
| 26 ] | 22 ] |
| 27 | 23 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 73 |
| 78 sources = [ | 74 sources = [ |
| 79 "test_support_impl.cc", | 75 "test_support_impl.cc", |
| 80 ] | 76 ] |
| 81 | 77 |
| 82 visibility = [ | 78 visibility = [ |
| 83 ":run_all_unittests", | 79 ":run_all_unittests", |
| 84 ":run_all_perftests", | 80 ":run_all_perftests", |
| 85 ] | 81 ] |
| 86 } | 82 } |
| OLD | NEW |