blob: 7d3f8efe0016867442ff25b2b52ada22c7e6b05a [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("disk-inspect") {
visibility = [ ":*" ]
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/fdio",
"//src/lib/line_input",
"//src/storage/lib/disk_inspector",
"//src/storage/minfs",
"//zircon/system/ulib/cmdline",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":disk-inspect" ]
}