blob: 5fc8e62ed19135279c3ff5c3cdba2bdfaa9a7167 [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("fvm-check") {
if (is_fuchsia) {
fdio_config = [ "//build/config/fuchsia:fdio_config" ]
if (configs + fdio_config - fdio_config != configs) {
configs -= fdio_config
}
}
sources = [ "main.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/lib/digest",
"//src/lib/storage/ramdevice_client/cpp",
"//src/storage/fvm",
"//src/storage/gpt",
"//third_party/boringssl",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/zx",
"//zircon/third_party/ulib/cksum",
]
}