blob: 8395212e76b1786f91e3983823e6eefc703a6080 [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.
zx_host_tool("fvm") {
sources = [ "main.cc" ]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fit",
"$zx/system/ulib/fvm",
"$zx/system/ulib/fvm-host",
"$zx/third_party/ulib/safemath",
]
if (current_os == "linux") {
sources += [ "mtd.cc" ]
deps += [
"$zx/system/ulib/ftl-mtd",
"$zx/system/ulib/mtd",
]
} else {
sources += [ "mtd-stub.cc" ]
}
}