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 "ipc_channel.cc", | 9 "ipc_channel.cc", |
10 "ipc_channel.h", | 10 "ipc_channel.h", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "ipc_channel_win.h", | 24 "ipc_channel_win.h", |
25 "ipc_descriptors.h", | 25 "ipc_descriptors.h", |
26 "ipc_export.h", | 26 "ipc_export.h", |
27 "ipc_forwarding_message_filter.cc", | 27 "ipc_forwarding_message_filter.cc", |
28 "ipc_forwarding_message_filter.h", | 28 "ipc_forwarding_message_filter.h", |
29 "ipc_listener.h", | 29 "ipc_listener.h", |
30 "ipc_logging.cc", | 30 "ipc_logging.cc", |
31 "ipc_logging.h", | 31 "ipc_logging.h", |
32 "ipc_message.cc", | 32 "ipc_message.cc", |
33 "ipc_message.h", | 33 "ipc_message.h", |
| 34 "ipc_message_attachment.cc", |
| 35 "ipc_message_attachment.h", |
34 "ipc_message_attachment_set.cc", | 36 "ipc_message_attachment_set.cc", |
35 "ipc_message_attachment_set.h", | 37 "ipc_message_attachment_set.h", |
36 "ipc_message_macros.h", | 38 "ipc_message_macros.h", |
37 "ipc_message_start.h", | 39 "ipc_message_start.h", |
38 "ipc_message_utils.cc", | 40 "ipc_message_utils.cc", |
39 "ipc_message_utils.h", | 41 "ipc_message_utils.h", |
40 "ipc_param_traits.h", | 42 "ipc_param_traits.h", |
41 "ipc_platform_file.cc", | 43 "ipc_platform_file.cc", |
42 "ipc_platform_file.h", | 44 "ipc_platform_file.h", |
| 45 "ipc_platform_file_attachment.cc", |
| 46 "ipc_platform_file_attachment.h", |
43 "ipc_sender.h", | 47 "ipc_sender.h", |
44 "ipc_switches.cc", | 48 "ipc_switches.cc", |
45 "ipc_switches.h", | 49 "ipc_switches.h", |
46 "ipc_sync_channel.cc", | 50 "ipc_sync_channel.cc", |
47 "ipc_sync_channel.h", | 51 "ipc_sync_channel.h", |
48 "ipc_sync_message.cc", | 52 "ipc_sync_message.cc", |
49 "ipc_sync_message.h", | 53 "ipc_sync_message.h", |
50 "ipc_sync_message_filter.cc", | 54 "ipc_sync_message_filter.cc", |
51 "ipc_sync_message_filter.h", | 55 "ipc_sync_message_filter.h", |
52 "message_filter.cc", | 56 "message_filter.cc", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 "ipc_test_channel_listener.h", | 177 "ipc_test_channel_listener.h", |
174 "ipc_test_sink.cc", | 178 "ipc_test_sink.cc", |
175 "ipc_test_sink.h", | 179 "ipc_test_sink.h", |
176 ] | 180 ] |
177 deps = [ | 181 deps = [ |
178 ":ipc", | 182 ":ipc", |
179 "//base", | 183 "//base", |
180 "//testing/gtest", | 184 "//testing/gtest", |
181 ] | 185 ] |
182 } | 186 } |
OLD | NEW |