blob: 048accf8d8f7c63feaaf14c4bc4608ff47bbf33c [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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("injectable-time") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
deps = [
"//src/lib/fuchsia-sync",
"//third_party/rust_crates:chrono",
]
if (is_fuchsia) {
deps += [ "//src/lib/zircon/rust:fuchsia-zircon" ]
}
sources = [
"src/injectable_time.rs",
"src/lib.rs",
]
}
fuchsia_unittest_package("injectable-time-test") {
deps = [ ":injectable-time_test" ]
}
group("tests") {
testonly = true
deps = [
# Since this uses system time, we want to test on both host and Fuchsia.
":injectable-time-test",
":injectable-time_test($host_toolchain)",
]
}