blob: 8d275e1e9f95f3802bf6983c71d4aedd36c5de38 [file]
// 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.
{
include: [
"//src/sys/component_manager/meta/passthrough_diagnostics.shard.cml",
"//src/sys/component_manager/tests/meta/elf_runner_and_environment.shard.cml",
],
children: [
{
name: "maintainer",
url: "#meta/maintainer-component.cm",
startup: "eager",
environment: "#elf-env",
},
{
name: "time_client",
url: "#meta/time-client.cm",
startup: "eager",
environment: "#elf-env",
},
],
offer: [
{
protocol: [ "fuchsia.time.Maintenance" ],
from: "parent",
to: "#maintainer",
},
{
protocol: [ "componentmanager.test.TestOutcomeReport" ],
from: "#maintainer",
to: "#time_client",
},
],
}