blob: cc6ab591a608beeb84c0eb05cb53dc530a2c7519 [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/assembly/bootfs_files_for_assembly.gni")
executable("lsblk") {
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.device:fuchsia.device_cpp",
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_cpp",
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_cpp",
"//sdk/fidl/fuchsia.hardware.skipblock:fuchsia.hardware.skipblock_cpp",
"//sdk/lib/component/incoming/cpp",
"//src/lib/fxl",
"//src/storage/gpt",
"//src/storage/lib/storage-metrics",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/pretty",
"//zircon/system/ulib/zx",
"//zircon/third_party/ulib/cksum",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":lsblk" ]
}