| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "node_channel.h", | 57 "node_channel.h", |
| 58 "node_controller.cc", | 58 "node_controller.cc", |
| 59 "node_controller.h", | 59 "node_controller.h", |
| 60 "options_validation.h", | 60 "options_validation.h", |
| 61 "platform_handle_dispatcher.cc", | 61 "platform_handle_dispatcher.cc", |
| 62 "platform_handle_dispatcher.h", | 62 "platform_handle_dispatcher.h", |
| 63 "ports_message.cc", | 63 "ports_message.cc", |
| 64 "ports_message.h", | 64 "ports_message.h", |
| 65 "remote_message_pipe_bootstrap.cc", | 65 "remote_message_pipe_bootstrap.cc", |
| 66 "remote_message_pipe_bootstrap.h", | 66 "remote_message_pipe_bootstrap.h", |
| 67 "request_context.cc", |
| 68 "request_context.h", |
| 67 "shared_buffer_dispatcher.cc", | 69 "shared_buffer_dispatcher.cc", |
| 68 "shared_buffer_dispatcher.h", | 70 "shared_buffer_dispatcher.h", |
| 69 "wait_set_dispatcher.cc", | 71 "wait_set_dispatcher.cc", |
| 70 "wait_set_dispatcher.h", | 72 "wait_set_dispatcher.h", |
| 71 "waiter.cc", | 73 "waiter.cc", |
| 72 "waiter.h", | 74 "waiter.h", |
| 75 "watcher.cc", |
| 76 "watcher.h", |
| 77 "watcher_set.cc", |
| 78 "watcher_set.h", |
| 73 ] | 79 ] |
| 74 | 80 |
| 75 defines = [ | 81 defines = [ |
| 76 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 82 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
| 77 "MOJO_SYSTEM_IMPLEMENTATION", | 83 "MOJO_SYSTEM_IMPLEMENTATION", |
| 78 ] | 84 ] |
| 79 | 85 |
| 80 all_dependent_configs = [ ":system_config" ] | 86 all_dependent_configs = [ ":system_config" ] |
| 81 | 87 |
| 82 public_deps = [ | 88 public_deps = [ |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "data_pipe_unittest.cc", | 146 "data_pipe_unittest.cc", |
| 141 "message_pipe_unittest.cc", | 147 "message_pipe_unittest.cc", |
| 142 "options_validation_unittest.cc", | 148 "options_validation_unittest.cc", |
| 143 "platform_handle_dispatcher_unittest.cc", | 149 "platform_handle_dispatcher_unittest.cc", |
| 144 "shared_buffer_dispatcher_unittest.cc", | 150 "shared_buffer_dispatcher_unittest.cc", |
| 145 "shared_buffer_unittest.cc", | 151 "shared_buffer_unittest.cc", |
| 146 "wait_set_dispatcher_unittest.cc", | 152 "wait_set_dispatcher_unittest.cc", |
| 147 "waiter_test_utils.cc", | 153 "waiter_test_utils.cc", |
| 148 "waiter_test_utils.h", | 154 "waiter_test_utils.h", |
| 149 "waiter_unittest.cc", | 155 "waiter_unittest.cc", |
| 156 "watch_unittest.cc", |
| 150 ] | 157 ] |
| 151 | 158 |
| 152 if (!is_ios) { | 159 if (!is_ios) { |
| 153 sources += [ "multiprocess_message_pipe_unittest.cc" ] | 160 sources += [ "multiprocess_message_pipe_unittest.cc" ] |
| 154 } | 161 } |
| 155 | 162 |
| 156 deps = [ | 163 deps = [ |
| 157 ":test_utils", | 164 ":test_utils", |
| 158 "//base", | 165 "//base", |
| 159 "//base/test:test_support", | 166 "//base/test:test_support", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 177 ":test_utils", | 184 ":test_utils", |
| 178 "//base", | 185 "//base", |
| 179 "//base/test:test_support", | 186 "//base/test:test_support", |
| 180 "//mojo/edk/system", | 187 "//mojo/edk/system", |
| 181 "//mojo/edk/test:run_all_perftests", | 188 "//mojo/edk/test:run_all_perftests", |
| 182 "//mojo/edk/test:test_support", | 189 "//mojo/edk/test:test_support", |
| 183 "//mojo/public/cpp/environment:standalone", | 190 "//mojo/public/cpp/environment:standalone", |
| 184 "//testing/gtest", | 191 "//testing/gtest", |
| 185 ] | 192 ] |
| 186 } | 193 } |
| OLD | NEW |