blob: 42f02c078fa2343617e241fbc7f62217f99f6bda [file]
# Copyright 2020 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_target_add") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
deps = [
"//sdk/fidl/fuchsia.developer.ffx:fuchsia.developer.ffx_rust",
"//sdk/fidl/fuchsia.net:fuchsia.net_rust",
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/lib/netext:lib",
"//src/lib/fidl/rust/fidl",
"//third_party/rust_crates:futures",
]
test_deps = [ "//src/lib/fuchsia-async" ]
}