blob: a747a983e4b1fb7567e5ed541dc07bc2f3a416b4 [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.
group("broker") {
deps = [
":nand-broker",
]
}
driver("nand-broker") {
sources = [
"broker.cpp",
]
deps = [
"$zx/system/banjo/ddk.protocol.nand",
"$zx/system/fidl/fuchsia-hardware-nand:c",
"$zx/system/fidl/fuchsia-nand:c",
"$zx/system/ulib/ddk",
"$zx/system/ulib/ddktl",
"$zx/system/ulib/fbl",
"$zx/system/ulib/sync",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxcpp",
]
}