| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "ipc_channel_reader_unittest.cc", | 141 "ipc_channel_reader_unittest.cc", |
| 142 "ipc_channel_unittest.cc", | 142 "ipc_channel_unittest.cc", |
| 143 "ipc_fuzzing_tests.cc", | 143 "ipc_fuzzing_tests.cc", |
| 144 "ipc_message_attachment_set_posix_unittest.cc", | 144 "ipc_message_attachment_set_posix_unittest.cc", |
| 145 "ipc_message_unittest.cc", | 145 "ipc_message_unittest.cc", |
| 146 "ipc_message_utils_unittest.cc", | 146 "ipc_message_utils_unittest.cc", |
| 147 "ipc_send_fds_test.cc", | 147 "ipc_send_fds_test.cc", |
| 148 "ipc_sync_channel_unittest.cc", | 148 "ipc_sync_channel_unittest.cc", |
| 149 "ipc_sync_message_unittest.cc", | 149 "ipc_sync_message_unittest.cc", |
| 150 "ipc_sync_message_unittest.h", | 150 "ipc_sync_message_unittest.h", |
| 151 "ipc_test_message_generator.cc", |
| 152 "ipc_test_message_generator.h", |
| 153 "ipc_test_messages.h", |
| 151 "sync_socket_unittest.cc", | 154 "sync_socket_unittest.cc", |
| 152 "unix_domain_socket_util_unittest.cc", | 155 "unix_domain_socket_util_unittest.cc", |
| 153 ] | 156 ] |
| 154 | 157 |
| 155 if (is_win || is_ios) { | 158 if (is_win || is_ios) { |
| 156 sources -= [ "unix_domain_socket_util_unittest.cc" ] | 159 sources -= [ "unix_domain_socket_util_unittest.cc" ] |
| 157 } | 160 } |
| 158 | 161 |
| 159 # TODO(brettw) hook up Android testing. | 162 # TODO(brettw) hook up Android testing. |
| 160 #if (is_android && gtest_target_type == "shared_library") { | 163 #if (is_android && gtest_target_type == "shared_library") { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "ipc_test_sink.cc", | 227 "ipc_test_sink.cc", |
| 225 "ipc_test_sink.h", | 228 "ipc_test_sink.h", |
| 226 ] | 229 ] |
| 227 deps = [ | 230 deps = [ |
| 228 ":ipc", | 231 ":ipc", |
| 229 "//base", | 232 "//base", |
| 230 "//base/test:test_support", | 233 "//base/test:test_support", |
| 231 "//testing/gtest", | 234 "//testing/gtest", |
| 232 ] | 235 ] |
| 233 } | 236 } |
| OLD | NEW |