| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 group("mojo") { | 7 group("mojo") { |
| 8 # Meta-target, don't link into production code. | 8 # Meta-target, don't link into production code. |
| 9 testonly = true | 9 testonly = true |
| 10 deps = [ | 10 deps = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", | 58 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 group("tests") { | 62 group("tests") { |
| 63 testonly = true | 63 testonly = true |
| 64 deps = [ | 64 deps = [ |
| 65 "//ipc/mojo:ipc_mojo_unittests", | 65 "//ipc/mojo:ipc_mojo_unittests", |
| 66 "//mojo/application/public/cpp/tests:mojo_public_application_unittests", | 66 "//mojo/application/public/cpp/tests:mojo_public_application_unittests", |
| 67 "//mojo/common:mojo_common_unittests", | 67 "//mojo/common:mojo_common_unittests", |
| 68 "//mojo/converters/input_events/tests:input_events_lib_unittests", |
| 68 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", | 69 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", |
| 69 "//third_party/mojo/src/mojo/edk/js/test:js_unittests", | 70 "//third_party/mojo/src/mojo/edk/js/test:js_unittests", |
| 70 "//third_party/mojo/src/mojo/edk/system:mojo_message_pipe_perftests", | 71 "//third_party/mojo/src/mojo/edk/system:mojo_message_pipe_perftests", |
| 71 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", | 72 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", |
| 72 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", | 73 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", |
| 73 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", | 74 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", |
| 74 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests", | 75 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_perftests", |
| 75 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", | 76 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", |
| 76 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", | 77 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
| 77 ] | 78 ] |
| 78 | 79 |
| 79 if (!is_component_build) { | 80 if (!is_component_build) { |
| 80 deps += [ | 81 deps += [ |
| 81 "//mojo/runner:apptests", | 82 "//mojo/runner:apptests", |
| 82 "//mojo/runner:mojo_runner_unittests", | 83 "//mojo/runner:mojo_runner_unittests", |
| 83 "//mojo/services/network:apptests", | 84 "//mojo/services/network:apptests", |
| 84 "//mojo/shell:mojo_shell_unittests", | 85 "//mojo/shell:mojo_shell_unittests", |
| 85 ] | 86 ] |
| 86 | 87 |
| 87 if (is_android) { | 88 if (is_android) { |
| 88 deps += [ "//mojo/runner:mojo_runner_apptests_apk" ] | 89 deps += [ "//mojo/runner:mojo_runner_apptests_apk" ] |
| 89 } | 90 } |
| 90 } | 91 } |
| 91 } | 92 } |
| OLD | NEW |