| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Utilties for use by EDK internal (unit and perf) tests. | 7 # Utilties for use by EDK internal (unit and perf) tests. |
| 8 mojo_edk_source_set("test") { | 8 mojo_edk_source_set("test") { |
| 9 testonly = true | 9 testonly = true |
| 10 mojo_edk_visibility = [ "mojo/edk/*" ] | 10 mojo_edk_visibility = [ "mojo/edk/*" ] |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 sources = [ | 84 sources = [ |
| 85 "run_all_perftests.cc", | 85 "run_all_perftests.cc", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 deps = [ | 88 deps = [ |
| 89 ":test", | 89 ":test", |
| 90 "//base/test:test_support", | 90 "//base/test:test_support", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 | 93 |
| 94 mojo_edk_source_set("unittests") { | 94 mojo_edk_unittests("mojo_edk_system_test_unittests") { |
| 95 testonly = true | |
| 96 mojo_edk_visibility = [ "mojo/edk/system:mojo_edk_system_unittests" ] | |
| 97 | |
| 98 sources = [ | 95 sources = [ |
| 99 "random_unittest.cc", | 96 "random_unittest.cc", |
| 100 ] | 97 ] |
| 101 | 98 |
| 102 deps = [ | 99 deps = [ |
| 103 ":test", | 100 ":test", |
| 104 "//testing/gtest", | 101 "//testing/gtest", |
| 105 ] | 102 ] |
| 106 } | 103 } |
| OLD | NEW |