| # 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/canvas/client_requested_draw/fidl:examples.canvas.clientrequesteddraw_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", |
| ] |
| } |