blob: c53ff06811ec25616583f54b15952e135ac63fa6 [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-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",
],
},
{
directory: "dev-display-coordinator",
rights: [ "r*" ],
path: "/dev/class/display-coordinator",
},
],
expose: [
{
protocol: "fuchsia.recovery.ui.ProgressRenderer",
from: "self",
},
],
}