blob: 91ee9c53a37d23f47b70609ce1582ec5f48b6cab [file] [log] [blame]
// Copyright 2021 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: [
"sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/cleanup",
},
collections: [
{
name: "coll",
durability: "transient",
},
],
use: [
{
protocol: [
"fuchsia.diagnostics.ArchiveAccessor",
"fuchsia.sys2.EventSource",
],
from: "parent",
},
{
event: [
"destroyed",
"started",
],
from: "framework",
},
],
offer: [
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: "#coll",
},
],
}