blob: 0e75d458fe200493c39e1912673e3555344faa10 [file] [log] [blame]
# Copyright 2025 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_bundle_create") {
sdk_category = "not-yet-specified"
version = "0.1.0"
edition = "2024"
with_unit_tests = true
args_sources = [ "src/args.rs" ]
sources = [
"src/assembly.rs",
"src/lib.rs",
]
args_deps = [
"//src/developer/ffx/core:lib",
"//src/developer/ffx/lib/pbms:lib",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:camino",
]
deps = [
"//src/developer/ffx/config:lib",
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/lib/fho:lib",
"//src/developer/ffx/lib/pbms:lib",
"//src/developer/ffx/lib/writer:lib",
"//src/lib/assembly/api",
"//src/lib/assembly/artifact_cache",
"//src/lib/assembly/assembled_system",
"//src/lib/assembly/cli_args",
"//src/lib/assembly/config_schema",
"//src/lib/assembly/container",
"//src/lib/assembly/product_bundle",
"//src/lib/assembly/release_info",
"//src/lib/assembly/tool",
"//src/lib/gcs",
"//src/lib/structured_ui",
"//src/storage/lib/delivery_blob",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:camino",
"//third_party/rust_crates:pathdiff",
"//third_party/rust_crates:tempfile",
]
test_deps = [ "//third_party/rust_crates:serial_test" ]
}