blob: ed59e70a7872a39a890a2ac38d0d4f471781008f [file] [log] [blame] [edit]
# 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("test_util") {
edition = "2018"
testonly = true
name = "assembly_test_util"
version = "0.1.0"
with_unit_tests = true
deps = [ "//src/sys/pkg/lib/fuchsia-pkg" ]
test_deps = [
"//third_party/rust_crates:serial_test",
"//third_party/rust_crates:tempfile",
]
sources = [ "src/lib.rs" ]
}
group("host_tests") {
testonly = true
deps = [ ":test_util_test" ]
}
}