blob: 0338a53c69766642070cf52cc452e11de5da5145 [file] [log] [blame]
# Copyright 2022 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_input_test_util") {
name = "virtio_input_test_util"
edition = "2021"
with_unit_tests = true
deps = [
"//third_party/rust_crates:clap",
"//third_party/rust_crates:libc",
]
test_deps = [ "//third_party/rust_crates:assert_matches" ]
sources = [
"src/events.rs",
"src/main.rs",
]
}
group("tests") {
testonly = true
public_deps = [ ":virtio_input_test_util_test" ]
}