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 28 matching lines...) Expand all Loading... |
39 "ipc_platform_file.h", | 39 "ipc_platform_file.h", |
40 "ipc_sender.h", | 40 "ipc_sender.h", |
41 "ipc_switches.cc", | 41 "ipc_switches.cc", |
42 "ipc_switches.h", | 42 "ipc_switches.h", |
43 "ipc_sync_channel.cc", | 43 "ipc_sync_channel.cc", |
44 "ipc_sync_channel.h", | 44 "ipc_sync_channel.h", |
45 "ipc_sync_message.cc", | 45 "ipc_sync_message.cc", |
46 "ipc_sync_message.h", | 46 "ipc_sync_message.h", |
47 "ipc_sync_message_filter.cc", | 47 "ipc_sync_message_filter.cc", |
48 "ipc_sync_message_filter.h", | 48 "ipc_sync_message_filter.h", |
| 49 "message_filter.cc", |
| 50 "message_filter.h", |
| 51 "message_filter_router.cc", |
| 52 "message_filter_router.h", |
49 "param_traits_log_macros.h", | 53 "param_traits_log_macros.h", |
50 "param_traits_macros.h", | 54 "param_traits_macros.h", |
51 "param_traits_read_macros.h", | 55 "param_traits_read_macros.h", |
52 "param_traits_write_macros.h", | 56 "param_traits_write_macros.h", |
53 "struct_constructor_macros.h", | 57 "struct_constructor_macros.h", |
54 "struct_destructor_macros.h", | 58 "struct_destructor_macros.h", |
55 "unix_domain_socket_util.cc", | 59 "unix_domain_socket_util.cc", |
56 "unix_domain_socket_util.h", | 60 "unix_domain_socket_util.h", |
57 ] | 61 ] |
58 | 62 |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "ipc_test_sink.cc", | 170 "ipc_test_sink.cc", |
167 "ipc_test_sink.h", | 171 "ipc_test_sink.h", |
168 ] | 172 ] |
169 deps = [ | 173 deps = [ |
170 ":ipc", | 174 ":ipc", |
171 "//base", | 175 "//base", |
172 "//testing/gtest", | 176 "//testing/gtest", |
173 ] | 177 ] |
174 } | 178 } |
175 | 179 |
OLD | NEW |