| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 test("mojo_system_unittests") { | 150 test("mojo_system_unittests") { |
| 151 sources = [ | 151 sources = [ |
| 152 "awakable_list_unittest.cc", | 152 "awakable_list_unittest.cc", |
| 153 "core_test_base.cc", | 153 "core_test_base.cc", |
| 154 "core_test_base.h", | 154 "core_test_base.h", |
| 155 "core_unittest.cc", | 155 "core_unittest.cc", |
| 156 "data_pipe_unittest.cc", | 156 "data_pipe_unittest.cc", |
| 157 "message_pipe_unittest.cc", | 157 "message_pipe_unittest.cc", |
| 158 "options_validation_unittest.cc", | 158 "options_validation_unittest.cc", |
| 159 "platform_handle_dispatcher_unittest.cc", | 159 "platform_handle_dispatcher_unittest.cc", |
| 160 "platform_wrapper_unittest.cc", |
| 160 "shared_buffer_dispatcher_unittest.cc", | 161 "shared_buffer_dispatcher_unittest.cc", |
| 161 "shared_buffer_unittest.cc", | 162 "shared_buffer_unittest.cc", |
| 162 "wait_set_dispatcher_unittest.cc", | 163 "wait_set_dispatcher_unittest.cc", |
| 163 "waiter_test_utils.cc", | 164 "waiter_test_utils.cc", |
| 164 "waiter_test_utils.h", | 165 "waiter_test_utils.h", |
| 165 "waiter_unittest.cc", | 166 "waiter_unittest.cc", |
| 166 "watch_unittest.cc", | 167 "watch_unittest.cc", |
| 167 ] | 168 ] |
| 168 | 169 |
| 169 if (!is_ios) { | 170 if (!is_ios) { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 193 deps = [ | 194 deps = [ |
| 194 ":test_utils", | 195 ":test_utils", |
| 195 "//base", | 196 "//base", |
| 196 "//base/test:test_support", | 197 "//base/test:test_support", |
| 197 "//mojo/edk/system", | 198 "//mojo/edk/system", |
| 198 "//mojo/edk/test:run_all_perftests", | 199 "//mojo/edk/test:run_all_perftests", |
| 199 "//mojo/edk/test:test_support", | 200 "//mojo/edk/test:test_support", |
| 200 "//testing/gtest", | 201 "//testing/gtest", |
| 201 ] | 202 ] |
| 202 } | 203 } |
| OLD | NEW |