| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "options_validation_unittest.cc", | 166 "options_validation_unittest.cc", |
| 167 "platform_handle_dispatcher_unittest.cc", | 167 "platform_handle_dispatcher_unittest.cc", |
| 168 "raw_channel_unittest.cc", | 168 "raw_channel_unittest.cc", |
| 169 "remote_data_pipe_impl_unittest.cc", | 169 "remote_data_pipe_impl_unittest.cc", |
| 170 "remote_message_pipe_unittest.cc", | 170 "remote_message_pipe_unittest.cc", |
| 171 "shared_buffer_dispatcher_unittest.cc", | 171 "shared_buffer_dispatcher_unittest.cc", |
| 172 "simple_dispatcher_unittest.cc", | 172 "simple_dispatcher_unittest.cc", |
| 173 "test_channel_endpoint_client.cc", | 173 "test_channel_endpoint_client.cc", |
| 174 "test_channel_endpoint_client.h", | 174 "test_channel_endpoint_client.h", |
| 175 "unique_identifier_unittest.cc", | 175 "unique_identifier_unittest.cc", |
| 176 "wait_set_dispatcher_unittest.cc", |
| 176 "waiter_test_utils.cc", | 177 "waiter_test_utils.cc", |
| 177 "waiter_test_utils.h", | 178 "waiter_test_utils.h", |
| 178 "waiter_unittest.cc", | 179 "waiter_unittest.cc", |
| 179 ] | 180 ] |
| 180 | 181 |
| 181 deps = [ | 182 deps = [ |
| 182 ":system", | 183 ":system", |
| 183 "//base", | 184 "//base", |
| 184 "//testing/gtest", | 185 "//testing/gtest", |
| 185 ] | 186 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 211 # TODO(vtl): Add separate test targets for this. | 212 # TODO(vtl): Add separate test targets for this. |
| 212 "mojo/edk/util:perftests", | 213 "mojo/edk/util:perftests", |
| 213 | 214 |
| 214 "mojo/edk/base_edk", | 215 "mojo/edk/base_edk", |
| 215 "mojo/edk/base_edk:test_base_edk", | 216 "mojo/edk/base_edk:test_base_edk", |
| 216 "mojo/edk/system/test", | 217 "mojo/edk/system/test", |
| 217 "mojo/edk/system/test:perf", | 218 "mojo/edk/system/test:perf", |
| 218 "mojo/edk/test:test_support", | 219 "mojo/edk/test:test_support", |
| 219 ] | 220 ] |
| 220 } | 221 } |
| OLD | NEW |