blob: 1129062cb8eb49b64007bdaab0e78fe159d937d9 [file] [log] [blame] [edit]
# 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_test("runner_bin") {
name = "runner_bin"
output_dir = target_out_dir + "/test"
edition = "2021"
sources = [ "src/main.rs" ]
source_root = "src/main.rs"
deps = [
"//src/lib/diagnostics/data/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component-test",
"//third_party/rust_crates:anyhow",
"//tools/fidl/example-tester:example_tester",
"//tools/fidl/example-tester/example/fidl:test.exampletester_rust",
]
}