blob: a58b838a102e8dc36692b075d486bcbadca19262 [file] [log] [blame]
# Copyright 2023 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_product_lookup") {
sdk_category = "not-yet-specified"
version = "0.1.0"
edition = "2024"
with_unit_tests = true
args_deps = [
"//src/developer/ffx/core:lib",
"//src/developer/ffx/lib/pbms:lib",
"//third_party/rust_crates:argh",
]
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
deps = [
"//src/developer/ffx/config:lib",
"//src/developer/ffx/lib/fho:lib",
"//src/developer/ffx/lib/pbms:lib",
"//src/developer/ffx/lib/writer:lib",
"//src/developer/ffx/plugins/product/common:lib",
"//src/developer/ffx/plugins/product/list:ffx_product_list",
"//src/lib/structured_ui",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:log",
]
test_deps = [
"//src/lib/fuchsia",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:tempfile",
]
}