| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("test_support") { | 7 source_set("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "mojo_test_base.cc", | 10 "mojo_test_base.cc", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 # public SDK itself as running the unittests requires the EDK. | 87 # public SDK itself as running the unittests requires the EDK. |
| 88 # TODO(vtl): These don't really belong here. (They should be converted to | 88 # TODO(vtl): These don't really belong here. (They should be converted to |
| 89 # apptests, but even apart from that these targets belong somewhere else.) | 89 # apptests, but even apart from that these targets belong somewhere else.) |
| 90 | 90 |
| 91 group("public_tests") { | 91 group("public_tests") { |
| 92 testonly = true | 92 testonly = true |
| 93 deps = [ | 93 deps = [ |
| 94 ":mojo_public_bindings_unittests", | 94 ":mojo_public_bindings_unittests", |
| 95 ":mojo_public_system_perftests", | 95 ":mojo_public_system_perftests", |
| 96 ":mojo_public_system_unittests", | 96 ":mojo_public_system_unittests", |
| 97 ":mojo_public_utility_unittests", | |
| 98 ] | 97 ] |
| 99 } | 98 } |
| 100 | 99 |
| 101 test("mojo_public_bindings_perftests") { | 100 test("mojo_public_bindings_perftests") { |
| 102 deps = [ | 101 deps = [ |
| 103 ":run_all_perftests", | 102 ":run_all_perftests", |
| 104 "//mojo/edk/test:test_support", | 103 "//mojo/edk/test:test_support", |
| 105 "//mojo/public/cpp/bindings/tests:perftests", | 104 "//mojo/public/cpp/bindings/tests:perftests", |
| 106 ] | 105 ] |
| 107 } | 106 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 120 "//mojo/public/c/system/tests:perftests", | 119 "//mojo/public/c/system/tests:perftests", |
| 121 ] | 120 ] |
| 122 } | 121 } |
| 123 | 122 |
| 124 test("mojo_public_system_unittests") { | 123 test("mojo_public_system_unittests") { |
| 125 deps = [ | 124 deps = [ |
| 126 ":run_all_unittests", | 125 ":run_all_unittests", |
| 127 "//mojo/public/cpp/system/tests", | 126 "//mojo/public/cpp/system/tests", |
| 128 ] | 127 ] |
| 129 } | 128 } |
| 130 | |
| 131 test("mojo_public_utility_unittests") { | |
| 132 deps = [ | |
| 133 ":run_all_unittests", | |
| 134 "//mojo/public/cpp/utility/tests", | |
| 135 ] | |
| 136 } | |
| OLD | NEW |