blob: af313f57e825ab1f03a3ced959c26228cafe4ba2 [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.
// progress-sender component manifest.
// For information on manifest format and features,
// see https://fuchsia.dev/fuchsia-src/concepts/components/component_manifests.
{
include: [ "syslog/client.shard.cml" ],
// Information about the program to run.
program: {
// Use the built-in ELF runner.
runner: "elf",
// The binary to run for this component.
binary: "bin/progress-sender",
},
// Capabilities used by this component.
use: [
{ protocol: "fuchsia.recovery.ui.ProgressRenderer" },
],
}