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", |
(...skipping 20 matching lines...) Expand all Loading... |
31 "ipc_channel_nacl.h", | 31 "ipc_channel_nacl.h", |
32 "ipc_channel_posix.cc", | 32 "ipc_channel_posix.cc", |
33 "ipc_channel_posix.h", | 33 "ipc_channel_posix.h", |
34 "ipc_channel_proxy.cc", | 34 "ipc_channel_proxy.cc", |
35 "ipc_channel_proxy.h", | 35 "ipc_channel_proxy.h", |
36 "ipc_channel_reader.cc", | 36 "ipc_channel_reader.cc", |
37 "ipc_channel_reader.h", | 37 "ipc_channel_reader.h", |
38 "ipc_channel_win.cc", | 38 "ipc_channel_win.cc", |
39 "ipc_channel_win.h", | 39 "ipc_channel_win.h", |
40 "ipc_descriptors.h", | 40 "ipc_descriptors.h", |
| 41 "ipc_endpoint.cc", |
| 42 "ipc_endpoint.h", |
41 "ipc_export.h", | 43 "ipc_export.h", |
42 "ipc_handle_win.cc", | 44 "ipc_handle_win.cc", |
43 "ipc_handle_win.h", | 45 "ipc_handle_win.h", |
44 "ipc_listener.h", | 46 "ipc_listener.h", |
45 "ipc_logging.cc", | 47 "ipc_logging.cc", |
46 "ipc_logging.h", | 48 "ipc_logging.h", |
47 "ipc_message.cc", | 49 "ipc_message.cc", |
48 "ipc_message.h", | 50 "ipc_message.h", |
49 "ipc_message_attachment.cc", | 51 "ipc_message_attachment.cc", |
50 "ipc_message_attachment.h", | 52 "ipc_message_attachment.h", |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "ipc_test_sink.cc", | 213 "ipc_test_sink.cc", |
212 "ipc_test_sink.h", | 214 "ipc_test_sink.h", |
213 ] | 215 ] |
214 deps = [ | 216 deps = [ |
215 ":ipc", | 217 ":ipc", |
216 "//base", | 218 "//base", |
217 "//base/test:test_support", | 219 "//base/test:test_support", |
218 "//testing/gtest", | 220 "//testing/gtest", |
219 ] | 221 ] |
220 } | 222 } |
OLD | NEW |