blob: cbc14d0d7dd25a6bfd7103830723ab0f427a5718 [file] [log] [blame]
# Copyright 2021 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("update_package") {
edition = "2021"
name = "assembly_update_package"
version = "0.1.0"
with_unit_tests = true
deps = [
"//src/lib/assembly/blobfs",
"//src/lib/assembly/images_manifest",
"//src/lib/assembly/partitions_config",
"//src/lib/assembly/tool",
"//src/lib/assembly/update_packages_manifest",
"//src/lib/assembly/util",
"//src/lib/fuchsia-url",
"//src/sys/pkg/lib/epoch",
"//src/sys/pkg/lib/fuchsia-pkg",
"//src/sys/pkg/lib/update-package",
"//src/sys/pkg/lib/version",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:serde_json5",
"//third_party/rust_crates:tempfile",
]
sources = [
"src/lib.rs",
"src/update_package.rs",
]
test_deps = [
"//src/lib/fuchsia-url",
"//src/sys/pkg/lib/far/rust:fuchsia-archive",
"//src/sys/pkg/lib/fuchsia-hash",
]
}
group("host_tests") {
testonly = true
deps = [ ":update_package_test" ]
}
}