blob: 80754530dc7156c615c0330747bc4346a3525f24 [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.
library("fvm-host") {
host = true
sources = [
"container/container.cpp",
"container/fvm.cpp",
"container/sparse.cpp",
"format/blobfs.cpp",
"format/format.cpp",
"format/minfs.cpp",
"fvm-info.cpp",
"sparse-paver.cpp",
]
public_deps = [
"$zx/system/ulib/blobfs",
"$zx/system/ulib/digest",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fit",
"$zx/system/ulib/fs",
"$zx/system/ulib/fvm",
"$zx/system/ulib/minfs",
"$zx/third_party/ulib/lz4",
# include/fvm/format.h has #include <fs-management/mount.h>
# though that library is not really meant for host code.
"$zx/system/ulib/fs-management:headers",
]
deps = [
"$zx/third_party/ulib/uboringssl",
]
}