blob: 13425fec6cdf0edd82fa56fd69c667c28e29e577 [file]
# 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.
import("//build/unification/zx_library.gni")
zx_library("ftl-mtd") {
sdk = "source"
sdk_headers = [ "lib/ftl-mtd/nand-volume-driver.h" ]
host = true
sources = [ "nand-volume-driver.cc" ]
public_deps = [
"//zircon/public/lib/fbl",
"//zircon/system/ulib/ftl",
]
deps = [
"//zircon/public/lib/fbl",
"//zircon/public/lib/fbl",
"//zircon/system/ulib/ftl",
"//zircon/system/ulib/mtd",
]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}