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