blob: 9b5c395d0eefe4c30e7cd251a2e6593f24c1359a [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 = [ "src/main.rs" ]
source_root = "src/main.rs"
deps = [
"//examples/fidl/new/${series_snake_case}/${variant_snake_case}/fidl:examples.${series_flat_case}.${variant_flat_case}_rust",
"//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",
]
}