| 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support | 7 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support |
| 8 mojo_edk_source_set("test_support") { | 8 mojo_edk_source_set("test_support") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 sources = [ | 74 sources = [ |
| 75 "test_support_impl.cc", | 75 "test_support_impl.cc", |
| 76 "test_support_impl.h", | 76 "test_support_impl.h", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 # Public SDK test targets follow. These targets are not defined within the | 80 # Public SDK test targets follow. These targets are not defined within the |
| 81 # public SDK itself as running the unittests requires the EDK. | 81 # public SDK itself as running the unittests requires the EDK. |
| 82 | 82 |
| 83 # GYP version: mojo/mojo_base.gyp:mojo_public_application_unittests | 83 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_application_unittests |
| 84 test("mojo_public_application_unittests") { | 84 test("mojo_public_application_unittests") { |
| 85 deps = [ | 85 deps = [ |
| 86 ":run_all_unittests", | 86 ":run_all_unittests", |
| 87 "../../public/cpp/application/tests", | 87 "../../public/cpp/application/tests", |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 | 90 |
| 91 # GYP version: mojo/mojo_base.gyp:mojo_public_bindings_unittests | 91 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_bindings_unittests |
| 92 test("mojo_public_bindings_unittests") { | 92 test("mojo_public_bindings_unittests") { |
| 93 deps = [ | 93 deps = [ |
| 94 ":run_all_unittests", | 94 ":run_all_unittests", |
| 95 "../../public/cpp/bindings/tests", | 95 "../../public/cpp/bindings/tests", |
| 96 ] | 96 ] |
| 97 } | 97 } |
| 98 | 98 |
| 99 # GYP version: mojo/mojo_base.gyp:mojo_public_environment_unittests | 99 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_environment_unittests |
| 100 test("mojo_public_environment_unittests") { | 100 test("mojo_public_environment_unittests") { |
| 101 deps = [ | 101 deps = [ |
| 102 ":run_all_unittests", | 102 ":run_all_unittests", |
| 103 "../../public/cpp/environment/tests", | 103 "../../public/cpp/environment/tests", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| 106 | 106 |
| 107 # GYP version: mojo/mojo_base.gyp:mojo_public_system_perftests | 107 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_system_perftests |
| 108 test("mojo_public_system_perftests") { | 108 test("mojo_public_system_perftests") { |
| 109 deps = [ | 109 deps = [ |
| 110 ":run_all_perftests", | 110 ":run_all_perftests", |
| 111 "../../public/c/system/tests:perftests", | 111 "../../public/c/system/tests:perftests", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 |
| 115 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_system_unittests |
| 116 test("mojo_public_system_unittests") { |
| 117 deps = [ |
| 118 ":run_all_unittests", |
| 119 "../../public/cpp/system/tests", |
| 120 ] |
| 121 } |
| 122 |
| 123 # GYP version: mojo/edk/mojo_edk_tests.gyp:mojo_public_utility_unittests |
| 124 test("mojo_public_utility_unittests") { |
| 125 deps = [ |
| 126 ":run_all_unittests", |
| 127 "../../public/cpp/utility/tests", |
| 128 ] |
| 129 } |
| OLD | NEW |