blob: 67df601ad5c75a986b0f02b00ae1ab0799f8d93b [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.
source_set("fshost-registry") {
sources = [
"fs-manager.cpp",
"registry.cpp",
"vnode.cpp",
]
public_deps = [
"$zx/system/fidl/fuchsia-fshost:c",
"$zx/system/ulib/async-loop:async-loop-cpp",
"$zx/system/ulib/fit",
"$zx/system/ulib/fs",
"$zx/system/ulib/memfs",
"$zx/system/ulib/zx",
"../shared",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fidl-utils",
"$zx/system/ulib/memfs:memfs-cpp",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zircon-internal",
]
}
source_set("block-watcher") {
sources = [
"block-device.cpp",
"block-watcher.cpp",
"filesystem-mounter.cpp",
"pkgfs-launcher.cpp",
]
public_deps = [
"$zx/system/fidl/fuchsia-fshost:c",
"$zx/system/ulib/async-loop:async-loop-cpp",
"$zx/system/ulib/fit",
"$zx/system/ulib/fs",
"$zx/system/ulib/memfs",
"$zx/system/ulib/zx",
"../shared",
]
deps = [
":fshost-registry",
"$zx/system/fidl/fuchsia-device:c",
"$zx/system/fidl/fuchsia-hardware-block:c",
"$zx/system/fidl/fuchsia-hardware-block-partition:c",
"$zx/system/fidl/fuchsia-hardware-zxcrypt:c",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fit",
"$zx/system/ulib/fs",
"$zx/system/ulib/fs-management",
"$zx/system/ulib/gpt",
"$zx/system/ulib/loader-service",
"$zx/system/ulib/minfs",
"$zx/system/ulib/trace",
"$zx/system/ulib/trace-engine",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxcrypt:zxcrypt-fdio",
]
}
executable("fshost") {
sources = [
"main.cpp",
]
deps = [
":block-watcher",
":fshost-registry",
"$zx/system/ulib/bootdata",
"$zx/system/ulib/fs-management",
"$zx/system/ulib/loader-service",
"$zx/system/ulib/ramdevice-client",
]
}
test("fshost-test") {
test_group = "ddk"
sources = [
"fshost-test.cpp",
]
deps = [
":fshost-registry",
"$zx/system/ulib/zxtest",
]
}
test("block-watcher-test") {
test_group = "ddk"
sources = [
"block-device-test.cpp",
"block-watcher-test.cpp",
]
deps = [
":block-watcher",
"$zx/system/ulib/fs-management",
"$zx/system/ulib/ramdevice-client",
"$zx/system/ulib/zxtest",
]
}