blob: 347b6eda239995e88f8435d24bc066e3d7fb8b34 [file] [log] [blame]
# 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("//src/developer/ffx/build/ffx_plugin.gni")
ffx_plugin("ffx_driver") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_deps = [ "//src/devices/bin/driver_tools:lib" ]
deps = [
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol-rustc",
"//sdk/fidl/fuchsia.device.manager:fuchsia.device.manager-rustc",
"//sdk/fidl/fuchsia.driver.development:fuchsia.driver.development-rustc",
"//sdk/fidl/fuchsia.driver.playground:fuchsia.driver.playground-rustc",
"//sdk/fidl/fuchsia.driver.registrar:fuchsia.driver.registrar-rustc",
"//sdk/fidl/fuchsia.io:fuchsia.io-rustc",
"//src/devices/bin/driver_tools:lib",
"//src/lib/component_hub",
"//src/lib/diagnostics/selectors",
"//src/lib/zircon/rust:fuchsia-zircon-status",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates/compat/rustyline",
]
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
}