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