blob: 6d3a31b2c09b1887d6641914b517c8dbcd32b4d7 [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("transfer_manifest") {
edition = "2021"
name = "transfer_manifest"
version = "0.1.0"
with_unit_tests = true
deps = [
"//third_party/rust_crates:camino",
"//third_party/rust_crates:serde",
]
test_deps = [ "//third_party/rust_crates:serde_json" ]
sources = [ "src/lib.rs" ]
}
}
group("tests") {
testonly = true
deps = [ ":transfer_manifest_test($host_toolchain)" ]
}