| 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "shared_buffer_dispatcher.cc", | 97 "shared_buffer_dispatcher.cc", |
| 98 "shared_buffer_dispatcher.h", | 98 "shared_buffer_dispatcher.h", |
| 99 "simple_dispatcher.cc", | 99 "simple_dispatcher.cc", |
| 100 "simple_dispatcher.h", | 100 "simple_dispatcher.h", |
| 101 "slave_connection_manager.cc", | 101 "slave_connection_manager.cc", |
| 102 "slave_connection_manager.h", | 102 "slave_connection_manager.h", |
| 103 "transport_data.cc", | 103 "transport_data.cc", |
| 104 "transport_data.h", | 104 "transport_data.h", |
| 105 "unique_identifier.cc", | 105 "unique_identifier.cc", |
| 106 "unique_identifier.h", | 106 "unique_identifier.h", |
| 107 "waitable_event.cc", | |
| 108 "waitable_event.h", | |
| 109 "waiter.cc", | 107 "waiter.cc", |
| 110 "waiter.h", | 108 "waiter.h", |
| 111 ] | 109 ] |
| 112 | 110 |
| 113 all_dependent_configs = [ ":system_config" ] | 111 all_dependent_configs = [ ":system_config" ] |
| 114 | 112 |
| 115 public_deps = [ | 113 public_deps = [ |
| 116 "../embedder", | 114 "../embedder", |
| 117 "../embedder:delegates", | 115 "../embedder:delegates", |
| 118 "../embedder:platform", | 116 "../embedder:platform", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "options_validation_unittest.cc", | 167 "options_validation_unittest.cc", |
| 170 "platform_handle_dispatcher_unittest.cc", | 168 "platform_handle_dispatcher_unittest.cc", |
| 171 "raw_channel_unittest.cc", | 169 "raw_channel_unittest.cc", |
| 172 "remote_data_pipe_impl_unittest.cc", | 170 "remote_data_pipe_impl_unittest.cc", |
| 173 "remote_message_pipe_unittest.cc", | 171 "remote_message_pipe_unittest.cc", |
| 174 "shared_buffer_dispatcher_unittest.cc", | 172 "shared_buffer_dispatcher_unittest.cc", |
| 175 "simple_dispatcher_unittest.cc", | 173 "simple_dispatcher_unittest.cc", |
| 176 "test_channel_endpoint_client.cc", | 174 "test_channel_endpoint_client.cc", |
| 177 "test_channel_endpoint_client.h", | 175 "test_channel_endpoint_client.h", |
| 178 "unique_identifier_unittest.cc", | 176 "unique_identifier_unittest.cc", |
| 179 "waitable_event_unittest.cc", | |
| 180 "waiter_test_utils.cc", | 177 "waiter_test_utils.cc", |
| 181 "waiter_test_utils.h", | 178 "waiter_test_utils.h", |
| 182 "waiter_unittest.cc", | 179 "waiter_unittest.cc", |
| 183 ] | 180 ] |
| 184 | 181 |
| 185 deps = [ | 182 deps = [ |
| 186 ":system", | 183 ":system", |
| 187 "//base", | 184 "//base", |
| 188 "//testing/gtest", | 185 "//testing/gtest", |
| 189 ] | 186 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 215 | 212 |
| 216 mojo_edk_deps = [ | 213 mojo_edk_deps = [ |
| 217 # TODO(vtl): Add separate test targets for this. | 214 # TODO(vtl): Add separate test targets for this. |
| 218 "mojo/edk/util:perftests", | 215 "mojo/edk/util:perftests", |
| 219 | 216 |
| 220 "mojo/edk/system/test", | 217 "mojo/edk/system/test", |
| 221 "mojo/edk/system/test:perf", | 218 "mojo/edk/system/test:perf", |
| 222 "mojo/edk/test:test_support", | 219 "mojo/edk/test:test_support", |
| 223 ] | 220 ] |
| 224 } | 221 } |
| OLD | NEW |