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