blob: 55e0e3acb65adb9f8eb0271e4e7c0b2590795136 [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.
executable("disk-inspect") {
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_llcpp",
"//sdk/lib/fdio",
"//src/lib/line_input",
"//src/storage/lib/disk_inspector",
"//src/storage/minfs",
"//zircon/system/ulib/cmdline",
]
# TODO(fxbug.dev/95833): This target uses the deprecated C bindings.
# Consider switching to the C++ bindings. See linked bug for details.
configs += [ "//build/c:fidl-deprecated-c-bindings" ]
}