blob: 9e802434e6ddffce7a7bc22a263eae7f6fff636c [file] [log] [blame]
// Copyright 2022 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.
{
include: [
"//src/lib/fake-clock/lib/client.shard.cml",
"//src/sys/time/timekeeper/config.shard.cml",
"inspect/client.shard.cml",
"sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/timekeeper_fake_time",
},
collections: [
{
name: "timesource",
durability: "transient",
},
],
use: [
{
protocol: [
"fuchsia.metrics.MetricEventLoggerFactory",
"fuchsia.time.Maintenance",
"test.time.TimeSourceControl",
],
},
],
offer: [
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: "#timesource",
},
{
protocol: "test.time.TimeSourceControl",
from: "parent",
to: "#timesource",
},
{
protocol: "fuchsia.time.external.PushSource",
from: "parent",
to: "#timesource",
},
],
}