| 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 "watcher.cc", | 69 "watch.cc", |
| 70 "watcher.h", | 70 "watch.h", |
| 71 "watcher_dispatcher.cc", |
| 72 "watcher_dispatcher.h", |
| 71 "watcher_set.cc", | 73 "watcher_set.cc", |
| 72 "watcher_set.h", | 74 "watcher_set.h", |
| 73 ] | 75 ] |
| 74 | 76 |
| 75 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] | 77 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] |
| 76 | 78 |
| 77 public_deps = [ | 79 public_deps = [ |
| 78 "//mojo/edk/embedder", | 80 "//mojo/edk/embedder", |
| 79 "//mojo/edk/embedder:platform", | 81 "//mojo/edk/embedder:platform", |
| 80 "//mojo/edk/system/ports", | 82 "//mojo/edk/system/ports", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "core_unittest.cc", | 162 "core_unittest.cc", |
| 161 "message_pipe_unittest.cc", | 163 "message_pipe_unittest.cc", |
| 162 "options_validation_unittest.cc", | 164 "options_validation_unittest.cc", |
| 163 "platform_handle_dispatcher_unittest.cc", | 165 "platform_handle_dispatcher_unittest.cc", |
| 164 "shared_buffer_dispatcher_unittest.cc", | 166 "shared_buffer_dispatcher_unittest.cc", |
| 165 "shared_buffer_unittest.cc", | 167 "shared_buffer_unittest.cc", |
| 166 "wait_set_dispatcher_unittest.cc", | 168 "wait_set_dispatcher_unittest.cc", |
| 167 "waiter_test_utils.cc", | 169 "waiter_test_utils.cc", |
| 168 "waiter_test_utils.h", | 170 "waiter_test_utils.h", |
| 169 "waiter_unittest.cc", | 171 "waiter_unittest.cc", |
| 170 "watch_unittest.cc", | 172 "watcher_unittest.cc", |
| 171 ] | 173 ] |
| 172 | 174 |
| 173 if (!is_ios) { | 175 if (!is_ios) { |
| 174 sources += [ | 176 sources += [ |
| 175 "data_pipe_unittest.cc", | 177 "data_pipe_unittest.cc", |
| 176 "multiprocess_message_pipe_unittest.cc", | 178 "multiprocess_message_pipe_unittest.cc", |
| 177 "platform_wrapper_unittest.cc", | 179 "platform_wrapper_unittest.cc", |
| 178 ] | 180 ] |
| 179 } | 181 } |
| 180 | 182 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 204 ":test_utils", | 206 ":test_utils", |
| 205 "//base", | 207 "//base", |
| 206 "//base/test:test_support", | 208 "//base/test:test_support", |
| 207 "//mojo/edk/system", | 209 "//mojo/edk/system", |
| 208 "//mojo/edk/test:run_all_perftests", | 210 "//mojo/edk/test:run_all_perftests", |
| 209 "//mojo/edk/test:test_support", | 211 "//mojo/edk/test:test_support", |
| 210 "//testing/gtest", | 212 "//testing/gtest", |
| 211 ] | 213 ] |
| 212 } | 214 } |
| 213 } | 215 } |
| OLD | NEW |