| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "ipc_channel_reader_unittest.cc", | 135 "ipc_channel_reader_unittest.cc", |
| 134 "ipc_channel_unittest.cc", | 136 "ipc_channel_unittest.cc", |
| 135 "ipc_fuzzing_tests.cc", | 137 "ipc_fuzzing_tests.cc", |
| 136 "ipc_message_attachment_set_posix_unittest.cc", | 138 "ipc_message_attachment_set_posix_unittest.cc", |
| 137 "ipc_message_unittest.cc", | 139 "ipc_message_unittest.cc", |
| 138 "ipc_message_utils_unittest.cc", | 140 "ipc_message_utils_unittest.cc", |
| 139 "ipc_send_fds_test.cc", | 141 "ipc_send_fds_test.cc", |
| 140 "ipc_sync_channel_unittest.cc", | 142 "ipc_sync_channel_unittest.cc", |
| 141 "ipc_sync_message_unittest.cc", | 143 "ipc_sync_message_unittest.cc", |
| 142 "ipc_sync_message_unittest.h", | 144 "ipc_sync_message_unittest.h", |
| 145 "ipc_test_message_generator.cc", |
| 146 "ipc_test_message_generator.h", |
| 147 "ipc_test_messages.h", |
| 143 "sync_socket_unittest.cc", | 148 "sync_socket_unittest.cc", |
| 144 "unix_domain_socket_util_unittest.cc", | 149 "unix_domain_socket_util_unittest.cc", |
| 145 ] | 150 ] |
| 146 | 151 |
| 147 if (is_win || is_ios) { | 152 if (is_win || is_ios) { |
| 148 sources -= [ "unix_domain_socket_util_unittest.cc" ] | 153 sources -= [ "unix_domain_socket_util_unittest.cc" ] |
| 149 } | 154 } |
| 150 | 155 |
| 151 # TODO(brettw) hook up Android testing. | 156 # TODO(brettw) hook up Android testing. |
| 152 #if (is_android && gtest_target_type == "shared_library") { | 157 #if (is_android && gtest_target_type == "shared_library") { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "ipc_test_sink.cc", | 220 "ipc_test_sink.cc", |
| 216 "ipc_test_sink.h", | 221 "ipc_test_sink.h", |
| 217 ] | 222 ] |
| 218 deps = [ | 223 deps = [ |
| 219 ":ipc", | 224 ":ipc", |
| 220 "//base", | 225 "//base", |
| 221 "//base/test:test_support", | 226 "//base/test:test_support", |
| 222 "//testing/gtest", | 227 "//testing/gtest", |
| 223 ] | 228 ] |
| 224 } | 229 } |
| OLD | NEW |