blob: 5161cfcbbf7b0c417ff7876807cfc1208d50a625 [file] [log] [blame]
// Copyright 2023 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: [
"driver_component/driver.shard.cml",
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "driver",
binary: "driver/virtio-gpu-display.so",
bind: "meta/bind/virtio-gpu-display.bindbc",
colocate: "false",
},
capabilities: [
{ service: "fuchsia.gpu.virtio.Service" },
{ service: "fuchsia.hardware.display.engine.Service" },
],
use: [
{ protocol: "fuchsia.sysmem2.Allocator" },
{ service: "fuchsia.hardware.pci.Service" },
],
expose: [
{
service: "fuchsia.gpu.virtio.Service",
from: "self",
},
{
service: "fuchsia.hardware.display.engine.Service",
from: "self",
},
],
}