blob: 86960bde05c094a5ef2776591be48463cad15d7e [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("blktest") {
if (is_fuchsia) {
configs += [ "//build/unification/config:zircon-migrated" ]
}
testonly = true
sources = [
"blktest.cc",
"main.c",
]
deps = [
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_c",
"//sdk/lib/fdio",
"//zircon/public/lib/fbl",
"//zircon/public/lib/pretty",
"//zircon/public/lib/sync",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/block-client",
"//zircon/system/ulib/fdio-caller",
"//zircon/system/ulib/fzl",
]
}