blob: a8ffba0b41559ce8110b8e6267800f779afe9ba5 [file] [log] [blame] [edit]
// 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.
{
include: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
"trace/use.shard.cml",
],
program: {
runner: "elf",
binary: "bin/fake-display-stack-host",
},
capabilities: [
{ service: "fuchsia.hardware.display.Service" },
],
use: [
{
protocol: [ "fuchsia.sysmem2.Allocator" ],
from: "parent",
},
],
expose: [
{
service: "fuchsia.hardware.display.Service",
from: "self",
},
],
config: {
active_width_px: { type: "uint32" },
active_height_px: { type: "uint32" },
refresh_rate_millihertz: { type: "uint32" },
max_layer_count: { type: "uint32" },
},
}