| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ":mojo_public_c_system_unittests", | 105 ":mojo_public_c_system_unittests", |
| 106 ":mojo_public_cpp_application_unittests", | 106 ":mojo_public_cpp_application_unittests", |
| 107 ":mojo_public_cpp_bindings_unittests", | 107 ":mojo_public_cpp_bindings_unittests", |
| 108 ":mojo_public_cpp_environment_unittests", | 108 ":mojo_public_cpp_environment_unittests", |
| 109 ":mojo_public_cpp_system_unittests", | 109 ":mojo_public_cpp_system_unittests", |
| 110 ":mojo_public_cpp_utility_unittests", | 110 ":mojo_public_cpp_utility_unittests", |
| 111 | 111 |
| 112 # Perf tests: | 112 # Perf tests: |
| 113 ":mojo_public_c_system_perftests", | 113 ":mojo_public_c_system_perftests", |
| 114 ":mojo_public_cpp_bindings_perftests", | 114 ":mojo_public_cpp_bindings_perftests", |
| 115 ":mojo_public_cpp_environment_perftests", |
| 115 ] | 116 ] |
| 116 } | 117 } |
| 117 | 118 |
| 118 # C unit tests: | 119 # C unit tests: |
| 119 | 120 |
| 120 test("mojo_public_c_bindings_unittests") { | 121 test("mojo_public_c_bindings_unittests") { |
| 121 deps = [ | 122 deps = [ |
| 122 "//mojo/edk/test:run_all_unittests", | 123 "//mojo/edk/test:run_all_unittests", |
| 123 "//mojo/public/c/bindings/tests", | 124 "//mojo/public/c/bindings/tests", |
| 124 ] | 125 ] |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 } | 179 } |
| 179 | 180 |
| 180 # C++ perf tests: | 181 # C++ perf tests: |
| 181 | 182 |
| 182 test("mojo_public_cpp_bindings_perftests") { | 183 test("mojo_public_cpp_bindings_perftests") { |
| 183 deps = [ | 184 deps = [ |
| 184 "//mojo/edk/test:run_all_perftests", | 185 "//mojo/edk/test:run_all_perftests", |
| 185 "//mojo/public/cpp/bindings/tests:perftests", | 186 "//mojo/public/cpp/bindings/tests:perftests", |
| 186 ] | 187 ] |
| 187 } | 188 } |
| 189 |
| 190 test("mojo_public_cpp_environment_perftests") { |
| 191 deps = [ |
| 192 "//mojo/edk/test:run_all_perftests", |
| 193 "//mojo/public/cpp/environment/tests:perftests", |
| 194 ] |
| 195 } |
| OLD | NEW |