| # Copyright 2021 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_library.gni") |
| |
| rustc_library("rust") { |
| edition = "2021" |
| testonly = true |
| deps = [ |
| "//sdk/fidl/fuchsia.component.test:fuchsia.component.test_rust", |
| "//sdk/fidl/fuchsia.driver.test:fuchsia.driver.test_rust", |
| "//sdk/fidl/fuchsia.io:fuchsia.io_rust", |
| "//sdk/lib/driver_test_realm", |
| "//sdk/rust/zx-status", |
| "//src/lib/fuchsia-component-test", |
| "//src/lib/fuchsia-fs", |
| "//src/sys/lib/cm_rust", |
| "//src/sys/lib/cm_types", |
| "//third_party/rust_crates:anyhow", |
| "//third_party/rust_crates:async-trait", |
| ] |
| name = "fuchsia_driver_test" |
| sources = [ "src/lib.rs" ] |
| } |