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.h", | 10 "attachment_broker.h", |
10 "attachment_broker_messages.h", | 11 "attachment_broker_messages.h", |
11 "attachment_broker_win.cc", | 12 "attachment_broker_win.cc", |
12 "attachment_broker_win.h", | 13 "attachment_broker_win.h", |
13 "brokerable_attachment.cc", | 14 "brokerable_attachment.cc", |
14 "brokerable_attachment.h", | 15 "brokerable_attachment.h", |
15 "handle_attachment_win.cc", | 16 "handle_attachment_win.cc", |
16 "handle_attachment_win.h", | 17 "handle_attachment_win.h", |
17 "ipc_channel.cc", | 18 "ipc_channel.cc", |
18 "ipc_channel.h", | 19 "ipc_channel.h", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "//crypto:crypto", | 107 "//crypto:crypto", |
107 ] | 108 ] |
108 } | 109 } |
109 | 110 |
110 # TODO(GYP): crbug.com/360936. Get this to build and run on Android. | 111 # TODO(GYP): crbug.com/360936. Get this to build and run on Android. |
111 if (!is_android) { | 112 if (!is_android) { |
112 test("ipc_tests") { | 113 test("ipc_tests") { |
113 sources = [ | 114 sources = [ |
114 "attachment_broker_win_unittest.cc", | 115 "attachment_broker_win_unittest.cc", |
115 "ipc_channel_posix_unittest.cc", | 116 "ipc_channel_posix_unittest.cc", |
| 117 "ipc_channel_reader_unittest.cc", |
116 "ipc_channel_unittest.cc", | 118 "ipc_channel_unittest.cc", |
117 "ipc_fuzzing_tests.cc", | 119 "ipc_fuzzing_tests.cc", |
118 "ipc_message_attachment_set_posix_unittest.cc", | 120 "ipc_message_attachment_set_posix_unittest.cc", |
119 "ipc_message_unittest.cc", | 121 "ipc_message_unittest.cc", |
120 "ipc_message_utils_unittest.cc", | 122 "ipc_message_utils_unittest.cc", |
121 "ipc_send_fds_test.cc", | 123 "ipc_send_fds_test.cc", |
122 "ipc_sync_channel_unittest.cc", | 124 "ipc_sync_channel_unittest.cc", |
123 "ipc_sync_message_unittest.cc", | 125 "ipc_sync_message_unittest.cc", |
124 "ipc_sync_message_unittest.h", | 126 "ipc_sync_message_unittest.h", |
125 "sync_socket_unittest.cc", | 127 "sync_socket_unittest.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 "ipc_test_sink.cc", | 199 "ipc_test_sink.cc", |
198 "ipc_test_sink.h", | 200 "ipc_test_sink.h", |
199 ] | 201 ] |
200 deps = [ | 202 deps = [ |
201 ":ipc", | 203 ":ipc", |
202 "//base", | 204 "//base", |
203 "//base/test:test_support", | 205 "//base/test:test_support", |
204 "//testing/gtest", | 206 "//testing/gtest", |
205 ] | 207 ] |
206 } | 208 } |
OLD | NEW |