blob: 38eaf5d8a0b91ac0be1929c61b5c1091ca875dfc [file] [log] [blame]
# Copyright 2021 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/test.gni")
import("//build/testing/bootfs_test.gni")
source_set("iommu") {
sources = [
"iommu-arm.cc",
"iommu-arm.h",
"iommu-x86.cc",
"iommu-x86.h",
]
deps = [
"//sdk/lib/fit",
"//src/lib/ddk",
"//third_party/acpica",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/syslog:syslog-headers",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxc",
]
}
test("iommu-test") {
sources = [ "iommu-x86-test.cc" ]
deps = [
"//src/devices/lib/iommu",
"//src/devices/testing/no_ddk",
"//src/lib/ddk",
"//third_party/acpica",
"//zircon/system/ulib/zxc",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("iommu-bootfs-test") {
name = "iommu-test"
deps = [ ":iommu-test" ]
}