| 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 "attachment_broker.cc", | 9 "attachment_broker.cc", |
| 10 "attachment_broker.h", | 10 "attachment_broker.h", |
| 11 "attachment_broker_messages.h", | 11 "attachment_broker_messages.h", |
| 12 "attachment_broker_privileged.cc", | 12 "attachment_broker_privileged.cc", |
| 13 "attachment_broker_privileged.h", | 13 "attachment_broker_privileged.h", |
| 14 "attachment_broker_privileged_win.cc", | 14 "attachment_broker_privileged_win.cc", |
| 15 "attachment_broker_privileged_win.h", | 15 "attachment_broker_privileged_win.h", |
| 16 "attachment_broker_unprivileged.cc", | 16 "attachment_broker_unprivileged.cc", |
| 17 "attachment_broker_unprivileged.h", | 17 "attachment_broker_unprivileged.h", |
| 18 "attachment_broker_unprivileged_win.cc", | 18 "attachment_broker_unprivileged_win.cc", |
| 19 "attachment_broker_unprivileged_win.h", | 19 "attachment_broker_unprivileged_win.h", |
| 20 "brokerable_attachment.cc", | 20 "brokerable_attachment.cc", |
| 21 "brokerable_attachment.h", | 21 "brokerable_attachment.h", |
| 22 "brokerable_attachment_win.cc", |
| 22 "handle_attachment_win.cc", | 23 "handle_attachment_win.cc", |
| 23 "handle_attachment_win.h", | 24 "handle_attachment_win.h", |
| 24 "handle_win.cc", | 25 "handle_win.cc", |
| 25 "handle_win.h", | 26 "handle_win.h", |
| 26 "ipc_channel.cc", | 27 "ipc_channel.cc", |
| 27 "ipc_channel.h", | 28 "ipc_channel.h", |
| 28 "ipc_channel_common.cc", | 29 "ipc_channel_common.cc", |
| 29 "ipc_channel_factory.cc", | 30 "ipc_channel_factory.cc", |
| 30 "ipc_channel_factory.h", | 31 "ipc_channel_factory.h", |
| 31 "ipc_channel_handle.h", | 32 "ipc_channel_handle.h", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 "ipc_test_sink.cc", | 222 "ipc_test_sink.cc", |
| 222 "ipc_test_sink.h", | 223 "ipc_test_sink.h", |
| 223 ] | 224 ] |
| 224 deps = [ | 225 deps = [ |
| 225 ":ipc", | 226 ":ipc", |
| 226 "//base", | 227 "//base", |
| 227 "//base/test:test_support", | 228 "//base/test:test_support", |
| 228 "//testing/gtest", | 229 "//testing/gtest", |
| 229 ] | 230 ] |
| 230 } | 231 } |
| OLD | NEW |