blob: f3f1a18d9a74ba84ba4ee1d5eb80240ad953cfd9 [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("iochk") {
visibility = [
":*",
"//src/devices/block/drivers/ftl/tests:ftl-integration",
]
sources = [ "iochk.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_cpp",
"//sdk/fidl/fuchsia.hardware.skipblock:fuchsia.hardware.skipblock_cpp",
"//sdk/lib/fdio",
"//src/storage/lib/block_client/cpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fdio-caller",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/sync",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
# TODO(https://fxbug.dev/42085293): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-vla-cxx-extension" ]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":iochk" ]
}