| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 component("ipc") { | 7 component("ipc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "attachment_broker.cc", | 9 "attachment_broker.cc", |
| 10 "attachment_broker.h", | 10 "attachment_broker.h", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 if (!is_android) { | 137 if (!is_android) { |
| 138 group("ipc_tests_run") { | 138 group("ipc_tests_run") { |
| 139 testonly = true | 139 testonly = true |
| 140 deps = [ | 140 deps = [ |
| 141 ":ipc_tests", | 141 ":ipc_tests", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 test("ipc_tests") { | 145 test("ipc_tests") { |
| 146 sources = [ | 146 sources = [ |
| 147 "attachment_broker_mac_unittest.cc", |
| 147 "attachment_broker_privileged_mac_unittest.cc", | 148 "attachment_broker_privileged_mac_unittest.cc", |
| 148 "attachment_broker_privileged_win_unittest.cc", | 149 "attachment_broker_privileged_win_unittest.cc", |
| 149 "attachment_broker_unprivileged_win_unittest.cc", | 150 "attachment_broker_unprivileged_win_unittest.cc", |
| 150 "ipc_channel_posix_unittest.cc", | 151 "ipc_channel_posix_unittest.cc", |
| 151 "ipc_channel_proxy_unittest.cc", | 152 "ipc_channel_proxy_unittest.cc", |
| 152 "ipc_channel_reader_unittest.cc", | 153 "ipc_channel_reader_unittest.cc", |
| 153 "ipc_channel_unittest.cc", | 154 "ipc_channel_unittest.cc", |
| 154 "ipc_fuzzing_tests.cc", | 155 "ipc_fuzzing_tests.cc", |
| 155 "ipc_message_attachment_set_posix_unittest.cc", | 156 "ipc_message_attachment_set_posix_unittest.cc", |
| 156 "ipc_message_unittest.cc", | 157 "ipc_message_unittest.cc", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "test_util_mac.cc", | 241 "test_util_mac.cc", |
| 241 "test_util_mac.h", | 242 "test_util_mac.h", |
| 242 ] | 243 ] |
| 243 deps = [ | 244 deps = [ |
| 244 ":ipc", | 245 ":ipc", |
| 245 "//base", | 246 "//base", |
| 246 "//base/test:test_support", | 247 "//base/test:test_support", |
| 247 "//testing/gtest", | 248 "//testing/gtest", |
| 248 ] | 249 ] |
| 249 } | 250 } |
| OLD | NEW |