blob: b711a3c930bb3a1ceb3c2640ca470a2a42a72ed0 [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/package.gni")
group("testing") {
testonly = true
deps = [
":fake_clock_lib",
":fake_logger_lib",
]
}
source_set("fake_logger_lib") {
testonly = true
sources = [
"fake_logger.cc",
"fake_logger.h",
]
public_deps = [
"//zircon/public/fidl/fuchsia-cobalt",
]
}
source_set("fake_clock_lib") {
testonly = true
sources = [
"fake_clock.h",
]
public_deps = [
"//src/cobalt/bin/utils:clock",
]
}