blob: b220ee09e479ef7876acf4351b26c47a81d05f0b [file] [log] [blame]
# Copyright 2019 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.
driver("ahci") {
deps = [
":shared",
]
}
group("test") {
testonly = true
deps = [
":ahci-unittest",
]
}
test("ahci-unittest") {
output_name = "ahci-unittest"
sources = [
"test/main.cpp",
]
deps = [
":shared",
"$zx/system/ulib/driver",
"$zx/system/ulib/zxtest",
]
}
source_set("shared") {
visibility = [ "./*" ]
sources = [
"ahci.cpp",
"sata.cpp",
]
deps = [
"$zx/system/banjo/ddk.protocol.block",
"$zx/system/banjo/ddk.protocol.pci",
"$zx/system/ulib/ddk",
"$zx/system/ulib/fbl",
"$zx/system/ulib/sync",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}