| 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.h", | 9 "attachment_broker.h", |
| 10 "attachment_broker_messages.h", | 10 "attachment_broker_messages.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "ipc_channel_posix.cc", | 25 "ipc_channel_posix.cc", |
| 26 "ipc_channel_posix.h", | 26 "ipc_channel_posix.h", |
| 27 "ipc_channel_proxy.cc", | 27 "ipc_channel_proxy.cc", |
| 28 "ipc_channel_proxy.h", | 28 "ipc_channel_proxy.h", |
| 29 "ipc_channel_reader.cc", | 29 "ipc_channel_reader.cc", |
| 30 "ipc_channel_reader.h", | 30 "ipc_channel_reader.h", |
| 31 "ipc_channel_win.cc", | 31 "ipc_channel_win.cc", |
| 32 "ipc_channel_win.h", | 32 "ipc_channel_win.h", |
| 33 "ipc_descriptors.h", | 33 "ipc_descriptors.h", |
| 34 "ipc_export.h", | 34 "ipc_export.h", |
| 35 "ipc_forwarding_message_filter.cc", | |
| 36 "ipc_forwarding_message_filter.h", | |
| 37 "ipc_handle_win.cc", | 35 "ipc_handle_win.cc", |
| 38 "ipc_handle_win.h", | 36 "ipc_handle_win.h", |
| 39 "ipc_listener.h", | 37 "ipc_listener.h", |
| 40 "ipc_logging.cc", | 38 "ipc_logging.cc", |
| 41 "ipc_logging.h", | 39 "ipc_logging.h", |
| 42 "ipc_message.cc", | 40 "ipc_message.cc", |
| 43 "ipc_message.h", | 41 "ipc_message.h", |
| 44 "ipc_message_attachment.cc", | 42 "ipc_message_attachment.cc", |
| 45 "ipc_message_attachment.h", | 43 "ipc_message_attachment.h", |
| 46 "ipc_message_attachment_set.cc", | 44 "ipc_message_attachment_set.cc", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "ipc_test_sink.cc", | 195 "ipc_test_sink.cc", |
| 198 "ipc_test_sink.h", | 196 "ipc_test_sink.h", |
| 199 ] | 197 ] |
| 200 deps = [ | 198 deps = [ |
| 201 ":ipc", | 199 ":ipc", |
| 202 "//base", | 200 "//base", |
| 203 "//base/test:test_support", | 201 "//base/test:test_support", |
| 204 "//testing/gtest", | 202 "//testing/gtest", |
| 205 ] | 203 ] |
| 206 } | 204 } |
| OLD | NEW |