blob: 1a3b1576f387984866f58c7814aac56c132b0371 [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/host.gni")
import("//build/rust/rustc_library.gni")
if (is_host) {
rustc_library("validate_product") {
edition = "2021"
name = "assembly_validate_product"
with_unit_tests = true
deps = [
"//src/lib/assembly/config",
"//src/lib/assembly/structured_config",
"//src/lib/assembly/validate_util",
"//src/sys/pkg/lib/far/rust:fuchsia-archive",
"//src/sys/pkg/lib/fuchsia-pkg",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:rayon",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:textwrap",
]
sources = [ "src/lib.rs" ]
}
group("host_tests") {
testonly = true
deps = [ ":validate_product_test" ]
}
}