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", | 12 "attachment_broker_privileged.cc", |
13 "attachment_broker_privileged.h", | 13 "attachment_broker_privileged.h", |
14 "attachment_broker_privileged_win.cc", | 14 "attachment_broker_privileged_win.cc", |
15 "attachment_broker_privileged_win.h", | 15 "attachment_broker_privileged_win.h", |
16 "attachment_broker_unprivileged.cc", | 16 "attachment_broker_unprivileged.cc", |
17 "attachment_broker_unprivileged.h", | 17 "attachment_broker_unprivileged.h", |
18 "attachment_broker_unprivileged_win.cc", | 18 "attachment_broker_unprivileged_win.cc", |
19 "attachment_broker_unprivileged_win.h", | 19 "attachment_broker_unprivileged_win.h", |
20 "brokerable_attachment.cc", | 20 "brokerable_attachment.cc", |
21 "brokerable_attachment.h", | 21 "brokerable_attachment.h", |
22 "handle_attachment_win.cc", | 22 "handle_attachment_win.cc", |
23 "handle_attachment_win.h", | 23 "handle_attachment_win.h", |
| 24 "handle_win.cc", |
| 25 "handle_win.h", |
24 "ipc_channel.cc", | 26 "ipc_channel.cc", |
25 "ipc_channel.h", | 27 "ipc_channel.h", |
26 "ipc_channel_common.cc", | 28 "ipc_channel_common.cc", |
27 "ipc_channel_factory.cc", | 29 "ipc_channel_factory.cc", |
28 "ipc_channel_factory.h", | 30 "ipc_channel_factory.h", |
29 "ipc_channel_handle.h", | 31 "ipc_channel_handle.h", |
30 "ipc_channel_nacl.cc", | 32 "ipc_channel_nacl.cc", |
31 "ipc_channel_nacl.h", | 33 "ipc_channel_nacl.h", |
32 "ipc_channel_posix.cc", | 34 "ipc_channel_posix.cc", |
33 "ipc_channel_posix.h", | 35 "ipc_channel_posix.h", |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 "ipc_test_sink.cc", | 215 "ipc_test_sink.cc", |
214 "ipc_test_sink.h", | 216 "ipc_test_sink.h", |
215 ] | 217 ] |
216 deps = [ | 218 deps = [ |
217 ":ipc", | 219 ":ipc", |
218 "//base", | 220 "//base", |
219 "//base/test:test_support", | 221 "//base/test:test_support", |
220 "//testing/gtest", | 222 "//testing/gtest", |
221 ] | 223 ] |
222 } | 224 } |
OLD | NEW |