| 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/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 mojo_use_go = false | 10 mojo_use_go = false |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", | 56 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 | 60 |
| 61 group("tests") { | 61 group("tests") { |
| 62 testonly = true | 62 testonly = true |
| 63 deps = [ | 63 deps = [ |
| 64 ":public_tests", | 64 ":public_tests", |
| 65 "//mojo/common:mojo_common_unittests", | 65 "//mojo/common:mojo_common_unittests", |
| 66 "//mojo/edk/system:tests", | |
| 67 "//mojo/dart/embedder/test:dart_unittests", | 66 "//mojo/dart/embedder/test:dart_unittests", |
| 67 "//mojo/edk:tests", |
| 68 "//mojo/gles2:mgl_unittests", |
| 69 "//mojo/gpu:apptests", |
| 68 "//mojo/public/cpp/bindings/tests:versioning_apptests", | 70 "//mojo/public/cpp/bindings/tests:versioning_apptests", |
| 71 "//mojo/services/files/c:apptests", |
| 72 "//mojo/services/files/cpp:files_impl_apptests", |
| 69 "//mojo/services/view_manager/cpp/tests:mojo_view_manager_lib_unittests", | 73 "//mojo/services/view_manager/cpp/tests:mojo_view_manager_lib_unittests", |
| 70 "//mojo/tools:message_generator", | 74 "//mojo/tools:message_generator", |
| 71 "//mojo/gles2:mgl_unittests", | |
| 72 "//mojo/gpu:apptests", | |
| 73 "//mojo/services/files/c:apptests", | |
| 74 "//mojo/services/files/cpp:files_impl_apptests", | |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 if (is_linux || is_android) { | 77 if (is_linux || is_android) { |
| 78 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] | 78 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 if (mojo_use_prebuilt_network_service) { | 81 if (mojo_use_prebuilt_network_service) { |
| 82 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] | 82 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] |
| 83 } | 83 } |
| 84 } | 84 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "//mojo/public/cpp/utility/tests", | 158 "//mojo/public/cpp/utility/tests", |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 | 161 |
| 162 test("mojo_system_impl_private_unittests") { | 162 test("mojo_system_impl_private_unittests") { |
| 163 deps = [ | 163 deps = [ |
| 164 "//mojo/edk/test:run_all_unittests", | 164 "//mojo/edk/test:run_all_unittests", |
| 165 "//mojo/public/platform/native:system_impl_private_tests", | 165 "//mojo/public/platform/native:system_impl_private_tests", |
| 166 ] | 166 ] |
| 167 } | 167 } |
| OLD | NEW |