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.h", | 9 "attachment_broker.h", |
10 "attachment_broker_messages.h", | 10 "attachment_broker_messages.h", |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. | 104 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
105 "//base/third_party/dynamic_annotations", | 105 "//base/third_party/dynamic_annotations", |
106 "//crypto:crypto", | 106 "//crypto:crypto", |
107 ] | 107 ] |
108 } | 108 } |
109 | 109 |
110 # TODO(GYP): crbug.com/360936. Get this to build and run on Android. | 110 # TODO(GYP): crbug.com/360936. Get this to build and run on Android. |
111 if (!is_android) { | 111 if (!is_android) { |
112 test("ipc_tests") { | 112 test("ipc_tests") { |
113 sources = [ | 113 sources = [ |
| 114 "attachment_broker_win_unittest.cc", |
114 "ipc_channel_posix_unittest.cc", | 115 "ipc_channel_posix_unittest.cc", |
115 "ipc_channel_unittest.cc", | 116 "ipc_channel_unittest.cc", |
116 "ipc_fuzzing_tests.cc", | 117 "ipc_fuzzing_tests.cc", |
117 "ipc_message_attachment_set_posix_unittest.cc", | 118 "ipc_message_attachment_set_posix_unittest.cc", |
118 "ipc_message_unittest.cc", | 119 "ipc_message_unittest.cc", |
119 "ipc_message_utils_unittest.cc", | 120 "ipc_message_utils_unittest.cc", |
120 "ipc_send_fds_test.cc", | 121 "ipc_send_fds_test.cc", |
121 "ipc_sync_channel_unittest.cc", | 122 "ipc_sync_channel_unittest.cc", |
122 "ipc_sync_message_unittest.cc", | 123 "ipc_sync_message_unittest.cc", |
123 "ipc_sync_message_unittest.h", | 124 "ipc_sync_message_unittest.h", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 "ipc_test_sink.cc", | 197 "ipc_test_sink.cc", |
197 "ipc_test_sink.h", | 198 "ipc_test_sink.h", |
198 ] | 199 ] |
199 deps = [ | 200 deps = [ |
200 ":ipc", | 201 ":ipc", |
201 "//base", | 202 "//base", |
202 "//base/test:test_support", | 203 "//base/test:test_support", |
203 "//testing/gtest", | 204 "//testing/gtest", |
204 ] | 205 ] |
205 } | 206 } |
OLD | NEW |