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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("../../../mojo/public/tools/bindings/mojom.gni") | 7 import("../../../mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "ports_message.cc", | 59 "ports_message.cc", |
60 "ports_message.h", | 60 "ports_message.h", |
61 "request_context.cc", | 61 "request_context.cc", |
62 "request_context.h", | 62 "request_context.h", |
63 "shared_buffer_dispatcher.cc", | 63 "shared_buffer_dispatcher.cc", |
64 "shared_buffer_dispatcher.h", | 64 "shared_buffer_dispatcher.h", |
65 "wait_set_dispatcher.cc", | 65 "wait_set_dispatcher.cc", |
66 "wait_set_dispatcher.h", | 66 "wait_set_dispatcher.h", |
67 "waiter.cc", | 67 "waiter.cc", |
68 "waiter.h", | 68 "waiter.h", |
69 "watch.cc", | 69 "watcher.cc", |
70 "watch.h", | 70 "watcher.h", |
71 "watcher_dispatcher.cc", | |
72 "watcher_dispatcher.h", | |
73 "watcher_set.cc", | 71 "watcher_set.cc", |
74 "watcher_set.h", | 72 "watcher_set.h", |
75 ] | 73 ] |
76 | 74 |
77 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] | 75 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] |
78 | 76 |
79 public_deps = [ | 77 public_deps = [ |
80 "//mojo/edk/embedder", | 78 "//mojo/edk/embedder", |
81 "//mojo/edk/embedder:platform", | 79 "//mojo/edk/embedder:platform", |
82 "//mojo/edk/system/ports", | 80 "//mojo/edk/system/ports", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 "core_unittest.cc", | 160 "core_unittest.cc", |
163 "message_pipe_unittest.cc", | 161 "message_pipe_unittest.cc", |
164 "options_validation_unittest.cc", | 162 "options_validation_unittest.cc", |
165 "platform_handle_dispatcher_unittest.cc", | 163 "platform_handle_dispatcher_unittest.cc", |
166 "shared_buffer_dispatcher_unittest.cc", | 164 "shared_buffer_dispatcher_unittest.cc", |
167 "shared_buffer_unittest.cc", | 165 "shared_buffer_unittest.cc", |
168 "wait_set_dispatcher_unittest.cc", | 166 "wait_set_dispatcher_unittest.cc", |
169 "waiter_test_utils.cc", | 167 "waiter_test_utils.cc", |
170 "waiter_test_utils.h", | 168 "waiter_test_utils.h", |
171 "waiter_unittest.cc", | 169 "waiter_unittest.cc", |
172 "watcher_unittest.cc", | 170 "watch_unittest.cc", |
173 ] | 171 ] |
174 | 172 |
175 if (!is_ios) { | 173 if (!is_ios) { |
176 sources += [ | 174 sources += [ |
177 "data_pipe_unittest.cc", | 175 "data_pipe_unittest.cc", |
178 "multiprocess_message_pipe_unittest.cc", | 176 "multiprocess_message_pipe_unittest.cc", |
179 "platform_wrapper_unittest.cc", | 177 "platform_wrapper_unittest.cc", |
180 ] | 178 ] |
181 } | 179 } |
182 | 180 |
(...skipping 23 matching lines...) Expand all Loading... |
206 ":test_utils", | 204 ":test_utils", |
207 "//base", | 205 "//base", |
208 "//base/test:test_support", | 206 "//base/test:test_support", |
209 "//mojo/edk/system", | 207 "//mojo/edk/system", |
210 "//mojo/edk/test:run_all_perftests", | 208 "//mojo/edk/test:run_all_perftests", |
211 "//mojo/edk/test:test_support", | 209 "//mojo/edk/test:test_support", |
212 "//testing/gtest", | 210 "//testing/gtest", |
213 ] | 211 ] |
214 } | 212 } |
215 } | 213 } |
OLD | NEW |