blob: bdfeeea7267285658da42ac98f7712f2e69bd5ab [file]
// 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-ui component manifest.
// For information on manifest format and features,
// see https://fuchsia.dev/fuchsia-src/concepts/components/component_manifests.
{
include: [
"inspect/client.shard.cml",
"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-ui",
},
capabilities: [
{
protocol: [ "fuchsia.recovery.ui.ProgressRenderer" ],
},
],
use: [
{
protocol: [
"fuchsia.sysmem.Allocator",
"fuchsia.sysmem2.Allocator",
"fuchsia.ui.composition.Flatland",
],
},
{ service: "fuchsia.hardware.display.Service" },
],
expose: [
{
protocol: "fuchsia.recovery.ui.ProgressRenderer",
from: "self",
},
],
}