blob: aa4ffc27277d5d07a38d17b0369977842a907813 [file] [log] [blame]
# Copyright 2018 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/rust/rustc_binary.gni")
rustc_binary("virtio_block_test_util") {
name = "virtio_block_test_util"
edition = "2021"
if (is_fuchsia) {
deps = [
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_rust",
"//sdk/lib/device-watcher/rust",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//src/lib/fuchsia-fs",
"//src/storage/lib/block_client/rust:remote-block-device",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:structopt",
]
source_root = "src/fuchsia_main.rs"
sources = [ "src/fuchsia_main.rs" ]
} else if (is_linux) {
deps = [
"//third_party/rust_crates:libc",
"//third_party/rust_crates:structopt",
]
source_root = "src/linux_main.rs"
sources = [ "src/linux_main.rs" ]
}
}