blob: 132e5cd6a3089b486de7720abef500e444045c43 [file] [log] [blame] [edit]
# 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("//src/developer/ffx/build/ffx_plugin.gni")
ffx_plugin("ffx_guest_attach") {
version = "0.1.0"
edition = "2021"
args_sources = [ "src/args.rs" ]
args_deps = [ "//src/virtualization/lib/cli/args:guest_cli_args" ]
sources = [ "src/lib.rs" ]
deps = [
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol_rust",
"//src/developer/ffx/lib/fho:lib",
"//src/virtualization/lib/cli:guest_cli",
"//third_party/rust_crates:async-trait",
]
}