blob: 4b3bba3715a8196940a8d2897857f35d1ef3c84e [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.
zx_library("abs_clock") {
sources = [
"clock.cc",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/sync",
]
public_deps = [
"$zx/system/ulib/zx",
]
}
group("test") {
testonly = true
deps = [
":abs_clock_test",
]
}
zx_test("abs_clock_test") {
testonly = true
sources = [
"clock_test.cc",
]
deps = [
":abs_clock",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/sync",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxtest",
]
}