| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ":mojo_public_cpp_bindings_perftests", | 118 ":mojo_public_cpp_bindings_perftests", |
| 119 ":mojo_public_cpp_environment_perftests", | 119 ":mojo_public_cpp_environment_perftests", |
| 120 ] | 120 ] |
| 121 } | 121 } |
| 122 | 122 |
| 123 # C unit tests: | 123 # C unit tests: |
| 124 | 124 |
| 125 test("mojo_public_c_bindings_unittests") { | 125 test("mojo_public_c_bindings_unittests") { |
| 126 deps = [ | 126 deps = [ |
| 127 "//mojo/edk/test:run_all_unittests", | 127 "//mojo/edk/test:run_all_unittests", |
| 128 "//mojo/public/c/bindings/tests", | 128 "//mojo/public/c:bindings_unittests", |
| 129 ] | 129 ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 test("mojo_public_c_common_unittests") { | 132 test("mojo_public_c_common_unittests") { |
| 133 deps = [ | 133 deps = [ |
| 134 "//mojo/edk/test:run_all_unittests", | 134 "//mojo/edk/test:run_all_unittests", |
| 135 "//mojo/public/c:common_unittests", | 135 "//mojo/public/c:common_unittests", |
| 136 ] | 136 ] |
| 137 } | 137 } |
| 138 | 138 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "//mojo/public/cpp/bindings/tests:perftests", | 204 "//mojo/public/cpp/bindings/tests:perftests", |
| 205 ] | 205 ] |
| 206 } | 206 } |
| 207 | 207 |
| 208 test("mojo_public_cpp_environment_perftests") { | 208 test("mojo_public_cpp_environment_perftests") { |
| 209 deps = [ | 209 deps = [ |
| 210 "//mojo/edk/test:run_all_perftests", | 210 "//mojo/edk/test:run_all_perftests", |
| 211 "//mojo/public/cpp/environment/tests:perftests", | 211 "//mojo/public/cpp/environment/tests:perftests", |
| 212 ] | 212 ] |
| 213 } | 213 } |
| OLD | NEW |