blob: 806f19016e2d0bc5bb9d05c63e3f6c1f402dd52f [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.
# MTD Redundant Storage (mtd-rs)
#
# This library requires an environment with mtd/mtd-user.h and MTD support.
zx_library("nand-redundant-storage") {
host = true
if (current_os == "linux") {
sources = [
"nand-rs.cc",
]
}
public_deps = [
"$zx/system/ulib/mtd",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/log",
"$zx/third_party/ulib/cksum",
]
}