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", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 if (!is_nacl) { | 62 if (!is_nacl) { |
63 sources -= [ | 63 sources -= [ |
64 "ipc_channel_nacl.cc", | 64 "ipc_channel_nacl.cc", |
65 "ipc_channel_nacl.h", | 65 "ipc_channel_nacl.h", |
66 ] | 66 ] |
67 } | 67 } |
68 | 68 |
69 if (is_win || is_ios) { | 69 if (is_win || is_ios) { |
70 sources -= [ | 70 sources -= [ |
71 "unix_domain_socket_acceptor.cc", | |
72 "unix_domain_socket_util.cc", | 71 "unix_domain_socket_util.cc", |
73 ] | 72 ] |
74 } | 73 } |
75 | 74 |
76 defines = [ "IPC_IMPLEMENTATION" ] | 75 defines = [ "IPC_IMPLEMENTATION" ] |
77 | 76 |
78 deps = [ | 77 deps = [ |
79 "//base", | 78 "//base", |
80 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. | 79 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
81 "//base/third_party/dynamic_annotations", | 80 "//base/third_party/dynamic_annotations", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 "ipc_test_sink.cc", | 166 "ipc_test_sink.cc", |
168 "ipc_test_sink.h", | 167 "ipc_test_sink.h", |
169 ] | 168 ] |
170 deps = [ | 169 deps = [ |
171 ":ipc", | 170 ":ipc", |
172 "//base", | 171 "//base", |
173 "//testing/gtest", | 172 "//testing/gtest", |
174 ] | 173 ] |
175 } | 174 } |
176 | 175 |
OLD | NEW |