| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 # public SDK itself since they are built as native executable binaries, needing | 91 # public SDK itself since they are built as native executable binaries, needing |
| 92 # to be linked with the EDK. | 92 # to be linked with the EDK. |
| 93 # TODO(vtl): They should be converted to "apptests", i.e., run as apps. | 93 # TODO(vtl): They should be converted to "apptests", i.e., run as apps. |
| 94 | 94 |
| 95 group("public_tests") { | 95 group("public_tests") { |
| 96 testonly = true | 96 testonly = true |
| 97 deps = [ | 97 deps = [ |
| 98 ":mojo_public_application_unittests", | 98 ":mojo_public_application_unittests", |
| 99 ":mojo_public_bindings_perftests", | 99 ":mojo_public_bindings_perftests", |
| 100 ":mojo_public_bindings_unittests", | 100 ":mojo_public_bindings_unittests", |
| 101 ":mojo_public_c_bindings_unittests", |
| 101 ":mojo_public_environment_unittests", | 102 ":mojo_public_environment_unittests", |
| 102 ":mojo_public_system_perftests", | 103 ":mojo_public_system_perftests", |
| 103 ":mojo_public_system_unittests", | 104 ":mojo_public_system_unittests", |
| 104 ":mojo_public_utility_unittests", | 105 ":mojo_public_utility_unittests", |
| 105 ":mojo_system_impl_private_unittests", | 106 ":mojo_system_impl_private_unittests", |
| 106 ] | 107 ] |
| 107 } | 108 } |
| 108 | 109 |
| 109 test("mojo_public_application_unittests") { | 110 test("mojo_public_application_unittests") { |
| 110 deps = [ | 111 deps = [ |
| 111 "//mojo/edk/test:run_all_unittests", | 112 "//mojo/edk/test:run_all_unittests", |
| 112 "//mojo/public/cpp/application/tests", | 113 "//mojo/public/cpp/application/tests", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| 115 | 116 |
| 116 test("mojo_public_bindings_unittests") { | 117 test("mojo_public_bindings_unittests") { |
| 117 deps = [ | 118 deps = [ |
| 118 "//mojo/edk/test:run_all_unittests", | 119 "//mojo/edk/test:run_all_unittests", |
| 119 "//mojo/public/cpp/bindings/tests", | 120 "//mojo/public/cpp/bindings/tests", |
| 120 ] | 121 ] |
| 121 } | 122 } |
| 122 | 123 |
| 124 test("mojo_public_c_bindings_unittests") { |
| 125 deps = [ |
| 126 "//mojo/edk/test:run_all_unittests", |
| 127 "//mojo/public/c/bindings/tests", |
| 128 ] |
| 129 } |
| 130 |
| 123 test("mojo_public_bindings_perftests") { | 131 test("mojo_public_bindings_perftests") { |
| 124 deps = [ | 132 deps = [ |
| 125 "//mojo/edk/test:run_all_perftests", | 133 "//mojo/edk/test:run_all_perftests", |
| 126 "//mojo/public/cpp/bindings/tests:perftests", | 134 "//mojo/public/cpp/bindings/tests:perftests", |
| 127 ] | 135 ] |
| 128 } | 136 } |
| 129 | 137 |
| 130 test("mojo_public_environment_unittests") { | 138 test("mojo_public_environment_unittests") { |
| 131 deps = [ | 139 deps = [ |
| 132 "//mojo/edk/test:run_all_unittests", | 140 "//mojo/edk/test:run_all_unittests", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 154 "//mojo/public/cpp/utility/tests", | 162 "//mojo/public/cpp/utility/tests", |
| 155 ] | 163 ] |
| 156 } | 164 } |
| 157 | 165 |
| 158 test("mojo_system_impl_private_unittests") { | 166 test("mojo_system_impl_private_unittests") { |
| 159 deps = [ | 167 deps = [ |
| 160 "//mojo/edk/test:run_all_unittests", | 168 "//mojo/edk/test:run_all_unittests", |
| 161 "//mojo/public/platform/native:system_impl_private_tests", | 169 "//mojo/public/platform/native:system_impl_private_tests", |
| 162 ] | 170 ] |
| 163 } | 171 } |
| OLD | NEW |