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