OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "shared_buffer_dispatcher.cc", | 97 "shared_buffer_dispatcher.cc", |
98 "shared_buffer_dispatcher.h", | 98 "shared_buffer_dispatcher.h", |
99 "simple_dispatcher.cc", | 99 "simple_dispatcher.cc", |
100 "simple_dispatcher.h", | 100 "simple_dispatcher.h", |
101 "slave_connection_manager.cc", | 101 "slave_connection_manager.cc", |
102 "slave_connection_manager.h", | 102 "slave_connection_manager.h", |
103 "transport_data.cc", | 103 "transport_data.cc", |
104 "transport_data.h", | 104 "transport_data.h", |
105 "unique_identifier.cc", | 105 "unique_identifier.cc", |
106 "unique_identifier.h", | 106 "unique_identifier.h", |
| 107 "waitable_event.cc", |
| 108 "waitable_event.h", |
107 "waiter.cc", | 109 "waiter.cc", |
108 "waiter.h", | 110 "waiter.h", |
109 ] | 111 ] |
110 | 112 |
111 all_dependent_configs = [ ":system_config" ] | 113 all_dependent_configs = [ ":system_config" ] |
112 | 114 |
113 public_deps = [ | 115 public_deps = [ |
114 "../embedder", | 116 "../embedder", |
115 "../embedder:delegates", | 117 "../embedder:delegates", |
116 "../embedder:platform", | 118 "../embedder:platform", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 "options_validation_unittest.cc", | 169 "options_validation_unittest.cc", |
168 "platform_handle_dispatcher_unittest.cc", | 170 "platform_handle_dispatcher_unittest.cc", |
169 "raw_channel_unittest.cc", | 171 "raw_channel_unittest.cc", |
170 "remote_data_pipe_impl_unittest.cc", | 172 "remote_data_pipe_impl_unittest.cc", |
171 "remote_message_pipe_unittest.cc", | 173 "remote_message_pipe_unittest.cc", |
172 "shared_buffer_dispatcher_unittest.cc", | 174 "shared_buffer_dispatcher_unittest.cc", |
173 "simple_dispatcher_unittest.cc", | 175 "simple_dispatcher_unittest.cc", |
174 "test_channel_endpoint_client.cc", | 176 "test_channel_endpoint_client.cc", |
175 "test_channel_endpoint_client.h", | 177 "test_channel_endpoint_client.h", |
176 "unique_identifier_unittest.cc", | 178 "unique_identifier_unittest.cc", |
| 179 "waitable_event_unittest.cc", |
177 "waiter_test_utils.cc", | 180 "waiter_test_utils.cc", |
178 "waiter_test_utils.h", | 181 "waiter_test_utils.h", |
179 "waiter_unittest.cc", | 182 "waiter_unittest.cc", |
180 ] | 183 ] |
181 | 184 |
182 deps = [ | 185 deps = [ |
183 ":system", | 186 ":system", |
184 "//base", | 187 "//base", |
185 "//testing/gtest", | 188 "//testing/gtest", |
186 ] | 189 ] |
(...skipping 25 matching lines...) Expand all Loading... |
212 | 215 |
213 mojo_edk_deps = [ | 216 mojo_edk_deps = [ |
214 # TODO(vtl): Add separate test targets for this. | 217 # TODO(vtl): Add separate test targets for this. |
215 "mojo/edk/util:perftests", | 218 "mojo/edk/util:perftests", |
216 | 219 |
217 "mojo/edk/system/test", | 220 "mojo/edk/system/test", |
218 "mojo/edk/system/test:perf", | 221 "mojo/edk/system/test:perf", |
219 "mojo/edk/test:test_support", | 222 "mojo/edk/test:test_support", |
220 ] | 223 ] |
221 } | 224 } |
OLD | NEW |