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", |
11 "attachment_broker_messages.h", | 11 "attachment_broker_messages.h", |
| 12 "attachment_broker_privileged.cc", |
| 13 "attachment_broker_privileged.h", |
12 "attachment_broker_privileged_win.cc", | 14 "attachment_broker_privileged_win.cc", |
13 "attachment_broker_privileged_win.h", | 15 "attachment_broker_privileged_win.h", |
14 "attachment_broker_win.cc", | 16 "attachment_broker_unprivileged.cc", |
15 "attachment_broker_win.h", | 17 "attachment_broker_unprivileged.h", |
| 18 "attachment_broker_unprivileged_win.cc", |
| 19 "attachment_broker_unprivileged_win.h", |
16 "brokerable_attachment.cc", | 20 "brokerable_attachment.cc", |
17 "brokerable_attachment.h", | 21 "brokerable_attachment.h", |
18 "handle_attachment_win.cc", | 22 "handle_attachment_win.cc", |
19 "handle_attachment_win.h", | 23 "handle_attachment_win.h", |
20 "ipc_channel.cc", | 24 "ipc_channel.cc", |
21 "ipc_channel.h", | 25 "ipc_channel.h", |
22 "ipc_channel_common.cc", | 26 "ipc_channel_common.cc", |
23 "ipc_channel_factory.cc", | 27 "ipc_channel_factory.cc", |
24 "ipc_channel_factory.h", | 28 "ipc_channel_factory.h", |
25 "ipc_channel_handle.h", | 29 "ipc_channel_handle.h", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 group("ipc_tests_run") { | 117 group("ipc_tests_run") { |
114 testonly = true | 118 testonly = true |
115 deps = [ | 119 deps = [ |
116 ":ipc_tests", | 120 ":ipc_tests", |
117 ] | 121 ] |
118 } | 122 } |
119 | 123 |
120 test("ipc_tests") { | 124 test("ipc_tests") { |
121 sources = [ | 125 sources = [ |
122 "attachment_broker_privileged_win_unittest.cc", | 126 "attachment_broker_privileged_win_unittest.cc", |
123 "attachment_broker_win_unittest.cc", | 127 "attachment_broker_unprivileged_win_unittest.cc", |
124 "ipc_channel_posix_unittest.cc", | 128 "ipc_channel_posix_unittest.cc", |
125 "ipc_channel_reader_unittest.cc", | 129 "ipc_channel_reader_unittest.cc", |
126 "ipc_channel_unittest.cc", | 130 "ipc_channel_unittest.cc", |
127 "ipc_fuzzing_tests.cc", | 131 "ipc_fuzzing_tests.cc", |
128 "ipc_message_attachment_set_posix_unittest.cc", | 132 "ipc_message_attachment_set_posix_unittest.cc", |
129 "ipc_message_unittest.cc", | 133 "ipc_message_unittest.cc", |
130 "ipc_message_utils_unittest.cc", | 134 "ipc_message_utils_unittest.cc", |
131 "ipc_send_fds_test.cc", | 135 "ipc_send_fds_test.cc", |
132 "ipc_sync_channel_unittest.cc", | 136 "ipc_sync_channel_unittest.cc", |
133 "ipc_sync_message_unittest.cc", | 137 "ipc_sync_message_unittest.cc", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 "ipc_test_sink.cc", | 211 "ipc_test_sink.cc", |
208 "ipc_test_sink.h", | 212 "ipc_test_sink.h", |
209 ] | 213 ] |
210 deps = [ | 214 deps = [ |
211 ":ipc", | 215 ":ipc", |
212 "//base", | 216 "//base", |
213 "//base/test:test_support", | 217 "//base/test:test_support", |
214 "//testing/gtest", | 218 "//testing/gtest", |
215 ] | 219 ] |
216 } | 220 } |
OLD | NEW |