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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("../../../mojo/public/tools/bindings/mojom.gni") | 6 import("../../../mojo/public/tools/bindings/mojom.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "raw_channel_posix.cc", | 70 "raw_channel_posix.cc", |
71 "raw_channel_win.cc", | 71 "raw_channel_win.cc", |
72 "routed_raw_channel.cc", | 72 "routed_raw_channel.cc", |
73 "routed_raw_channel.h", | 73 "routed_raw_channel.h", |
74 "shared_buffer_dispatcher.cc", | 74 "shared_buffer_dispatcher.cc", |
75 "shared_buffer_dispatcher.h", | 75 "shared_buffer_dispatcher.h", |
76 "simple_dispatcher.cc", | 76 "simple_dispatcher.cc", |
77 "simple_dispatcher.h", | 77 "simple_dispatcher.h", |
78 "transport_data.cc", | 78 "transport_data.cc", |
79 "transport_data.h", | 79 "transport_data.h", |
| 80 "wait_set_dispatcher.cc", |
| 81 "wait_set_dispatcher.h", |
80 "waiter.cc", | 82 "waiter.cc", |
81 "waiter.h", | 83 "waiter.h", |
82 ] | 84 ] |
83 | 85 |
84 defines = [ | 86 defines = [ |
85 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 87 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
86 "MOJO_SYSTEM_IMPLEMENTATION", | 88 "MOJO_SYSTEM_IMPLEMENTATION", |
87 ] | 89 ] |
88 | 90 |
89 all_dependent_configs = [ ":system_config" ] | 91 all_dependent_configs = [ ":system_config" ] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 "message_in_transit_test_utils.h", | 156 "message_in_transit_test_utils.h", |
155 "message_pipe_test_utils.cc", | 157 "message_pipe_test_utils.cc", |
156 "message_pipe_test_utils.h", | 158 "message_pipe_test_utils.h", |
157 "message_pipe_unittest.cc", | 159 "message_pipe_unittest.cc", |
158 "multiprocess_message_pipe_unittest.cc", | 160 "multiprocess_message_pipe_unittest.cc", |
159 "options_validation_unittest.cc", | 161 "options_validation_unittest.cc", |
160 "platform_handle_dispatcher_unittest.cc", | 162 "platform_handle_dispatcher_unittest.cc", |
161 "raw_channel_unittest.cc", | 163 "raw_channel_unittest.cc", |
162 "shared_buffer_dispatcher_unittest.cc", | 164 "shared_buffer_dispatcher_unittest.cc", |
163 "simple_dispatcher_unittest.cc", | 165 "simple_dispatcher_unittest.cc", |
| 166 "wait_set_dispatcher_unittest.cc", |
164 "waiter_test_utils.cc", | 167 "waiter_test_utils.cc", |
165 "waiter_test_utils.h", | 168 "waiter_test_utils.h", |
166 "waiter_unittest.cc", | 169 "waiter_unittest.cc", |
167 ] | 170 ] |
168 | 171 |
169 deps = [ | 172 deps = [ |
170 ":system", | 173 ":system", |
171 ":test_utils", | 174 ":test_utils", |
172 | 175 |
173 # TODO(use_chrome_edk): remove "2" | 176 # TODO(use_chrome_edk): remove "2" |
(...skipping 29 matching lines...) Expand all Loading... |
203 "../test:test_support", | 206 "../test:test_support", |
204 "//base", | 207 "//base", |
205 "//base/test:test_support", | 208 "//base/test:test_support", |
206 "//testing/gtest", | 209 "//testing/gtest", |
207 | 210 |
208 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 211 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
209 # declared in third party only for now. | 212 # declared in third party only for now. |
210 "//third_party/mojo/src/mojo/edk/system", | 213 "//third_party/mojo/src/mojo/edk/system", |
211 ] | 214 ] |
212 } | 215 } |
OLD | NEW |