| 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("//build/module_args/mojo.gni") | 6 import("//build/module_args/mojo.gni") |
| 7 import("//mojo/public/mojo.gni") | 7 import("//mojo/public/mojo.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", | 53 "//mojo/nacl/nonsfi:mojo_nacl_tests_nonsfi", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 | 58 |
| 59 group("tests") { | 59 group("tests") { |
| 60 testonly = true | 60 testonly = true |
| 61 deps = [ | 61 deps = [ |
| 62 ":public_tests", | 62 ":public_tests", |
| 63 "//mojo/common:mojo_common_unittests", | 63 "//mojo/common:mojo_common_apptests", |
| 64 "//mojo/converters:mojo_converters_unittests", | 64 "//mojo/converters:mojo_converters_unittests", |
| 65 "//mojo/dart:tests", | 65 "//mojo/dart:tests", |
| 66 "//mojo/data_pipe_utils:mojo_data_pipe_utils_apptests", |
| 66 "//mojo/edk:tests", | 67 "//mojo/edk:tests", |
| 67 "//mojo/file_utils:file_utils_apptests", | 68 "//mojo/file_utils:file_utils_apptests", |
| 68 "//mojo/gles2:mgl_unittests", | 69 "//mojo/gles2:mgl_unittests", |
| 70 "//mojo/message_pump:mojo_message_pump_apptests", |
| 69 "//mojo/public/cpp/bindings/tests:versioning_apptests", | 71 "//mojo/public/cpp/bindings/tests:versioning_apptests", |
| 70 "//mojo/public/platform/native:tests", | 72 "//mojo/public/platform/native:tests", |
| 71 "//mojo/services/files/c:apptests", | 73 "//mojo/services/files/c:apptests", |
| 72 "//mojo/services/files/cpp:files_impl_apptests", | 74 "//mojo/services/files/cpp:files_impl_apptests", |
| 73 "//mojo/services/gfx/composition/cpp:apptests", | 75 "//mojo/services/gfx/composition/cpp:apptests", |
| 74 "//mojo/services/gfx/images/cpp:image_pipe_apptest", | 76 "//mojo/services/gfx/images/cpp:image_pipe_apptest", |
| 75 "//mojo/services/gfx/images/cpp:image_pipe_apptest", | 77 "//mojo/services/gfx/images/cpp:image_pipe_apptest", |
| 76 "//mojo/services/log/cpp:log_client_apptests", | 78 "//mojo/services/log/cpp:log_client_apptests", |
| 77 "//mojo/tools:message_generator", | 79 "//mojo/tools:message_generator", |
| 78 "//mojo/ui:apptests", | 80 "//mojo/ui:apptests", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//mojo/public/cpp/utility/tests", | 169 "//mojo/public/cpp/utility/tests", |
| 168 ] | 170 ] |
| 169 } | 171 } |
| 170 | 172 |
| 171 test("mojo_system_impl_private_unittests") { | 173 test("mojo_system_impl_private_unittests") { |
| 172 deps = [ | 174 deps = [ |
| 173 "//mojo/edk/test:run_all_unittests", | 175 "//mojo/edk/test:run_all_unittests", |
| 174 "//mojo/public/platform/native:system_impl_private_tests", | 176 "//mojo/public/platform/native:system_impl_private_tests", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| OLD | NEW |