blob: bc6632b0ab83fdb3c96f0e57402b23968d1dd632 [file] [log] [blame]
# 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("../../../build/ffx_plugin.gni")
ffx_plugin("ffx_component_doctor") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.component:fuchsia.component-rustc",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/lib/writer:lib",
"//src/sys/lib/moniker",
"//third_party/rust_crates:prettytable-rs",
"//third_party/rust_crates:termion",
"//third_party/rust_crates:textwrap",
]
test_deps = [ "//third_party/rust_crates:assert_matches" ]
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
}