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 component("ipc") { | 5 component("ipc") { |
6 sources = [ | 6 sources = [ |
7 "file_descriptor_set_posix.cc", | 7 "file_descriptor_set_posix.cc", |
8 "file_descriptor_set_posix.h", | 8 "file_descriptor_set_posix.h", |
9 "ipc_channel.cc", | 9 "ipc_channel.cc", |
10 "ipc_channel.h", | 10 "ipc_channel.h", |
11 "ipc_channel_factory.cc", | |
12 "ipc_channel_factory.h", | |
13 "ipc_channel_handle.h", | 11 "ipc_channel_handle.h", |
| 12 "ipc_channel_handle_acceptor.cc", |
| 13 "ipc_channel_handle_acceptor.h", |
14 "ipc_channel_nacl.cc", | 14 "ipc_channel_nacl.cc", |
15 "ipc_channel_nacl.h", | 15 "ipc_channel_nacl.h", |
16 "ipc_channel_posix.cc", | 16 "ipc_channel_posix.cc", |
17 "ipc_channel_posix.h", | 17 "ipc_channel_posix.h", |
18 "ipc_channel_proxy.cc", | 18 "ipc_channel_proxy.cc", |
19 "ipc_channel_proxy.h", | 19 "ipc_channel_proxy.h", |
20 "ipc_channel_reader.cc", | 20 "ipc_channel_reader.cc", |
21 "ipc_channel_reader.h", | 21 "ipc_channel_reader.h", |
22 "ipc_channel_win.cc", | 22 "ipc_channel_win.cc", |
23 "ipc_channel_win.h", | 23 "ipc_channel_win.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 if (!is_nacl) { | 63 if (!is_nacl) { |
64 sources -= [ | 64 sources -= [ |
65 "ipc_channel_nacl.cc", | 65 "ipc_channel_nacl.cc", |
66 "ipc_channel_nacl.h", | 66 "ipc_channel_nacl.h", |
67 ] | 67 ] |
68 } | 68 } |
69 | 69 |
70 if (is_win || is_ios) { | 70 if (is_win || is_ios) { |
71 sources -= [ | 71 sources -= [ |
72 "ipc_channel_factory.cc", | 72 "ipc_channel_handle_acceptor.cc", |
73 "unix_domain_socket_util.cc", | 73 "unix_domain_socket_util.cc", |
74 ] | 74 ] |
75 } | 75 } |
76 | 76 |
77 defines = [ "IPC_IMPLEMENTATION" ] | 77 defines = [ "IPC_IMPLEMENTATION" ] |
78 | 78 |
79 deps = [ | 79 deps = [ |
80 "//base", | 80 "//base", |
81 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. | 81 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
82 "//base/third_party/dynamic_annotations", | 82 "//base/third_party/dynamic_annotations", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "ipc_test_sink.cc", | 168 "ipc_test_sink.cc", |
169 "ipc_test_sink.h", | 169 "ipc_test_sink.h", |
170 ] | 170 ] |
171 deps = [ | 171 deps = [ |
172 ":ipc", | 172 ":ipc", |
173 "//base", | 173 "//base", |
174 "//testing/gtest", | 174 "//testing/gtest", |
175 ] | 175 ] |
176 } | 176 } |
177 | 177 |
OLD | NEW |