| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("test_support") { | 7 source_set("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "mojo_test_base.cc", |
| 11 "mojo_test_base.h", |
| 10 "multiprocess_test_helper.cc", | 12 "multiprocess_test_helper.cc", |
| 11 "multiprocess_test_helper.h", | 13 "multiprocess_test_helper.h", |
| 12 "scoped_ipc_support.cc", | 14 "scoped_ipc_support.cc", |
| 13 "scoped_ipc_support.h", | 15 "scoped_ipc_support.h", |
| 14 "test_utils.h", | 16 "test_utils.h", |
| 15 "test_utils_posix.cc", | 17 "test_utils_posix.cc", |
| 16 "test_utils_win.cc", | 18 "test_utils_win.cc", |
| 17 ] | 19 ] |
| 18 | 20 |
| 19 deps = [ | 21 deps = [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 ] | 133 ] |
| 132 } | 134 } |
| 133 | 135 |
| 134 # TODO(use_chrome_edk): remove "2" | 136 # TODO(use_chrome_edk): remove "2" |
| 135 test("mojo_public_utility_unittests2") { | 137 test("mojo_public_utility_unittests2") { |
| 136 deps = [ | 138 deps = [ |
| 137 ":run_all_unittests", | 139 ":run_all_unittests", |
| 138 "//mojo/public/cpp/utility/tests", | 140 "//mojo/public/cpp/utility/tests", |
| 139 ] | 141 ] |
| 140 } | 142 } |
| OLD | NEW |