blob: 91c9d8fcbde05389430f081a2aa6ab2e2969f586 [file] [log] [blame]
# Copyright 2019 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/rust/rustc_library.gni")
import("//build/test/test_package.gni")
rustc_library("lib") {
name = "rkf45"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
test_deps = [ "//src/lib/test_util" ]
}
test_package("rkf45_tests") {
deps = [ ":lib_test" ]
tests = [
{
name = "rkf45_lib_test"
},
]
}