blob: c4bc5962beea9fa7c451b03bffc8d8e4ccd8ff5d [file] [log] [blame]
# 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_fastboot_tool") {
sdk_category = "not-yet-specified"
version = "0.1.0"
edition = "2024"
with_unit_tests = true
args_with_unit_tests = true
args_deps = [
"//src/developer/ffx/core:lib",
"//third_party/rust_crates:argh",
]
deps = [
"//src/developer/ffx/config:lib",
"//src/developer/ffx/lib/addr:lib",
"//src/developer/ffx/lib/discovery:lib",
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/lib/fastboot:lib",
"//src/developer/ffx/lib/fastboot/connection_factory:lib",
"//src/developer/ffx/lib/fastboot/interface:lib",
"//src/developer/ffx/lib/fho:lib",
"//src/developer/ffx/lib/target:lib",
"//src/developer/ffx/lib/writer:lib",
"//src/storage/lib/sparse/rust:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:schemars",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:tokio",
]
test_deps = [ "//src/lib/fuchsia" ]
args_test_deps = []
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
}