blob: d4c4d24d6605ad478a0f21a5954112b259233db7 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
import("//build/test.gni")
group("tests") {
testonly = true
deps = [ ":arch-tests($host_toolchain)" ]
}
if (is_host) {
test("arch-tests") {
sources = [
"cpuid-basic-tests.cc",
"cpuid-corpus-tests.cc",
"fake-cpuid-tests.cc",
"lbr-tests.cc",
]
deps = [
"data/cpuid",
"//src/lib/files",
"//zircon/kernel/lib/arch",
"//zircon/kernel/lib/arch/testing",
"//zircon/public/lib/zxc",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/hwreg:hwreg-mock",
"//zircon/third_party/rapidjson",
]
}
}