| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("../../../mojo/public/tools/bindings/mojom.gni") | 7 import("../../../mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "//testing/gtest:gtest", | 143 "//testing/gtest:gtest", |
| 144 ] | 144 ] |
| 145 } | 145 } |
| 146 | 146 |
| 147 test("mojo_system_unittests") { | 147 test("mojo_system_unittests") { |
| 148 sources = [ | 148 sources = [ |
| 149 "channel_unittest.cc", | 149 "channel_unittest.cc", |
| 150 "core_test_base.cc", | 150 "core_test_base.cc", |
| 151 "core_test_base.h", | 151 "core_test_base.h", |
| 152 "core_unittest.cc", | 152 "core_unittest.cc", |
| 153 "handle_table_unittest.cc", |
| 153 "message_pipe_unittest.cc", | 154 "message_pipe_unittest.cc", |
| 154 "options_validation_unittest.cc", | 155 "options_validation_unittest.cc", |
| 155 "platform_handle_dispatcher_unittest.cc", | 156 "platform_handle_dispatcher_unittest.cc", |
| 156 "shared_buffer_dispatcher_unittest.cc", | 157 "shared_buffer_dispatcher_unittest.cc", |
| 157 "shared_buffer_unittest.cc", | 158 "shared_buffer_unittest.cc", |
| 158 "signals_unittest.cc", | 159 "signals_unittest.cc", |
| 159 "watcher_unittest.cc", | 160 "watcher_unittest.cc", |
| 160 ] | 161 ] |
| 161 | 162 |
| 162 if (!is_ios) { | 163 if (!is_ios) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| 203 } | 204 } |
| OLD | NEW |