| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("ipc") { | 8 component("ipc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "attachment_broker.cc", | 10 "attachment_broker.cc", |
| 11 "attachment_broker.h", | 11 "attachment_broker.h", |
| 12 "attachment_broker_messages.h", | 12 "attachment_broker_messages.h", |
| 13 "attachment_broker_privileged.cc", | 13 "attachment_broker_privileged.cc", |
| 14 "attachment_broker_privileged.h", | 14 "attachment_broker_privileged.h", |
| 15 "attachment_broker_privileged_mac.cc", | 15 "attachment_broker_privileged_mac.cc", |
| 16 "attachment_broker_privileged_mac.h", | 16 "attachment_broker_privileged_mac.h", |
| 17 "attachment_broker_privileged_win.cc", | 17 "attachment_broker_privileged_win.cc", |
| 18 "attachment_broker_privileged_win.h", | 18 "attachment_broker_privileged_win.h", |
| 19 "attachment_broker_unprivileged.cc", | 19 "attachment_broker_unprivileged.cc", |
| 20 "attachment_broker_unprivileged.h", | 20 "attachment_broker_unprivileged.h", |
| 21 "attachment_broker_unprivileged_mac.cc", | 21 "attachment_broker_unprivileged_mac.cc", |
| 22 "attachment_broker_unprivileged_mac.h", | 22 "attachment_broker_unprivileged_mac.h", |
| 23 "attachment_broker_unprivileged_win.cc", | 23 "attachment_broker_unprivileged_win.cc", |
| 24 "attachment_broker_unprivileged_win.h", | 24 "attachment_broker_unprivileged_win.h", |
| 25 "brokerable_attachment.cc", | 25 "brokerable_attachment.cc", |
| 26 "brokerable_attachment.h", | 26 "brokerable_attachment.h", |
| 27 "brokerable_attachment_mac.cc", | 27 "brokerable_attachment_mac.cc", |
| 28 "brokerable_attachment_win.cc", | 28 "brokerable_attachment_win.cc", |
| 29 "export_template.h", |
| 29 "handle_attachment_win.cc", | 30 "handle_attachment_win.cc", |
| 30 "handle_attachment_win.h", | 31 "handle_attachment_win.h", |
| 31 "handle_win.cc", | 32 "handle_win.cc", |
| 32 "handle_win.h", | 33 "handle_win.h", |
| 33 "ipc_channel.cc", | 34 "ipc_channel.cc", |
| 34 "ipc_channel.h", | 35 "ipc_channel.h", |
| 35 "ipc_channel_common.cc", | 36 "ipc_channel_common.cc", |
| 36 "ipc_channel_factory.cc", | 37 "ipc_channel_factory.cc", |
| 37 "ipc_channel_factory.h", | 38 "ipc_channel_factory.h", |
| 38 "ipc_channel_handle.h", | 39 "ipc_channel_handle.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 58 "ipc_message.cc", | 59 "ipc_message.cc", |
| 59 "ipc_message.h", | 60 "ipc_message.h", |
| 60 "ipc_message_attachment.cc", | 61 "ipc_message_attachment.cc", |
| 61 "ipc_message_attachment.h", | 62 "ipc_message_attachment.h", |
| 62 "ipc_message_attachment_set.cc", | 63 "ipc_message_attachment_set.cc", |
| 63 "ipc_message_attachment_set.h", | 64 "ipc_message_attachment_set.h", |
| 64 "ipc_message_generator.cc", | 65 "ipc_message_generator.cc", |
| 65 "ipc_message_generator.h", | 66 "ipc_message_generator.h", |
| 66 "ipc_message_macros.h", | 67 "ipc_message_macros.h", |
| 67 "ipc_message_start.h", | 68 "ipc_message_start.h", |
| 69 "ipc_message_templates.h", |
| 70 "ipc_message_templates_impl.h", |
| 68 "ipc_message_utils.cc", | 71 "ipc_message_utils.cc", |
| 69 "ipc_message_utils.h", | 72 "ipc_message_utils.h", |
| 70 "ipc_platform_file.cc", | 73 "ipc_platform_file.cc", |
| 71 "ipc_platform_file.h", | 74 "ipc_platform_file.h", |
| 72 "ipc_platform_file_attachment_posix.cc", | 75 "ipc_platform_file_attachment_posix.cc", |
| 73 "ipc_platform_file_attachment_posix.h", | 76 "ipc_platform_file_attachment_posix.h", |
| 74 "ipc_sender.h", | 77 "ipc_sender.h", |
| 75 "ipc_switches.cc", | 78 "ipc_switches.cc", |
| 76 "ipc_switches.h", | 79 "ipc_switches.h", |
| 77 "ipc_sync_channel.cc", | 80 "ipc_sync_channel.cc", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 ] | 238 ] |
| 236 public_deps = [ | 239 public_deps = [ |
| 237 ":ipc", | 240 ":ipc", |
| 238 ] | 241 ] |
| 239 deps = [ | 242 deps = [ |
| 240 "//base", | 243 "//base", |
| 241 "//base/test:test_support", | 244 "//base/test:test_support", |
| 242 "//testing/gtest", | 245 "//testing/gtest", |
| 243 ] | 246 ] |
| 244 } | 247 } |
| OLD | NEW |