# Copyright 2020 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. | |
# Helper functions for clock-related gtest cases | |
import("//build/components.gni") | |
source_set("testing") { | |
testonly = true | |
sources = [ | |
"clock_test.cc", | |
"clock_test.h", | |
] | |
deps = [ | |
"//sdk/lib/fit-promise", | |
"//src/lib/testing/loop_fixture", | |
"//src/media/audio/lib/clock", | |
"//zircon/system/ulib/affine", | |
"//zircon/system/ulib/zx", | |
] | |
} |