blob: 444bc5d3f26874c5caf3c40efe204f2b7411a5cb [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_bisect") {
sdk_category = "not-yet-specified"
version = "0.1.0"
edition = "2024"
with_unit_tests = true
args_sources = [ "src/args.rs" ]
sources = [
"src/bisection_controller.rs",
"src/bisection_plan.rs",
"src/lib.rs",
"src/search_space.rs",
"src/strategies/all_dimensions.rs",
"src/strategies/longest_dimension.rs",
"src/strategies/mod.rs",
"src/strategies/util.rs",
"src/versioned_artifact_set.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/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/cli_args",
"//src/lib/assembly/config_schema",
"//src/lib/assembly/container",
"//src/lib/assembly/platform_artifacts",
"//src/lib/gcs",
"//src/lib/structured_ui",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:camino",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
]
test_deps = [
"//src/developer/ffx/lib/writer:lib",
"//third_party/rust_crates:futures-lite",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:tempfile",
]
}