blob: 116b4d1ad217a10527549ed64ccdd462f9c88b55 [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.
{
include: [
"syslog/client.shard.cml",
"vulkan/offer.shard.cml",
],
children: [
{
name: "test",
url: "vkext-test#meta/vkext-test-child.cm",
},
],
capabilities: [
{
config: "fuchsia.gpu.test.SupportProtectedMemory",
type: "bool",
value: true,
},
{
config: "fuchsia.gpu.test.SupportSysmemYv12",
type: "bool",
value: true,
},
],
offer: [
{
from: "self",
to: "#test",
config: "fuchsia.gpu.test.SupportProtectedMemory",
},
{
from: "self",
to: "#test",
config: "fuchsia.gpu.test.SupportSysmemYv12",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test",
},
],
}