blob: 8a640a1f453a47980088ad76c04e9fa5dde956f6 [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_vsock_test_util") {
name = "virtio_vsock_test_util"
edition = "2021"
configs += [ "//src/virtualization/tests:guest_test_util" ]
disable_rbe = true
if (is_fuchsia) {
deps = [
"//sdk/fidl/fuchsia.vsock:fuchsia.vsock-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:thiserror",
]
source_root = "src/fuchsia_main.rs"
sources = [ "src/fuchsia_main.rs" ]
} else if (is_linux) {
deps = [ "//third_party/rust_crates:libc" ]
source_root = "src/linux_main.rs"
sources = [ "src/linux_main.rs" ]
}
}