| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "ipc_sync_message_filter.cc", | 75 "ipc_sync_message_filter.cc", |
| 76 "ipc_sync_message_filter.h", | 76 "ipc_sync_message_filter.h", |
| 77 "message_filter.cc", | 77 "message_filter.cc", |
| 78 "message_filter.h", | 78 "message_filter.h", |
| 79 "message_filter_router.cc", | 79 "message_filter_router.cc", |
| 80 "message_filter_router.h", | 80 "message_filter_router.h", |
| 81 "param_traits_log_macros.h", | 81 "param_traits_log_macros.h", |
| 82 "param_traits_macros.h", | 82 "param_traits_macros.h", |
| 83 "param_traits_read_macros.h", | 83 "param_traits_read_macros.h", |
| 84 "param_traits_write_macros.h", | 84 "param_traits_write_macros.h", |
| 85 "placeholder_brokerable_attachment.cc", |
| 86 "placeholder_brokerable_attachment.h", |
| 85 "struct_constructor_macros.h", | 87 "struct_constructor_macros.h", |
| 86 "struct_destructor_macros.h", | 88 "struct_destructor_macros.h", |
| 87 "unix_domain_socket_util.cc", | 89 "unix_domain_socket_util.cc", |
| 88 "unix_domain_socket_util.h", | 90 "unix_domain_socket_util.h", |
| 89 ] | 91 ] |
| 90 | 92 |
| 91 if (is_nacl) { | 93 if (is_nacl) { |
| 92 sources -= [ | 94 sources -= [ |
| 93 "ipc_channel.cc", | 95 "ipc_channel.cc", |
| 94 "ipc_channel_posix.cc", | 96 "ipc_channel_posix.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "ipc_test_sink.cc", | 218 "ipc_test_sink.cc", |
| 217 "ipc_test_sink.h", | 219 "ipc_test_sink.h", |
| 218 ] | 220 ] |
| 219 deps = [ | 221 deps = [ |
| 220 ":ipc", | 222 ":ipc", |
| 221 "//base", | 223 "//base", |
| 222 "//base/test:test_support", | 224 "//base/test:test_support", |
| 223 "//testing/gtest", | 225 "//testing/gtest", |
| 224 ] | 226 ] |
| 225 } | 227 } |
| OLD | NEW |