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