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