| // 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" ], |
| children: [ |
| { |
| name: "test", |
| url: "#meta/vkloop-test-child.cm", |
| }, |
| ], |
| offer: [ |
| { |
| protocol: [ |
| "fuchsia.driver.development.Manager", |
| "fuchsia.sysmem.Allocator", |
| "fuchsia.sysmem2.Allocator", |
| "fuchsia.tracing.provider.Registry", |
| "fuchsia.vulkan.loader.Loader", |
| ], |
| from: "parent", |
| to: [ "#test" ], |
| }, |
| { |
| service: "fuchsia.gpu.magma.Service", |
| from: "parent", |
| to: [ "#test" ], |
| }, |
| { |
| config: [ |
| "fuchsia.gpu.test.DisabledTestPattern", |
| "fuchsia.gpu.test.GpuDriverUrl", |
| "fuchsia.gpu.test.GpuVendorId", |
| ], |
| from: "void", |
| to: "#test", |
| availability: "optional", |
| }, |
| ], |
| expose: [ |
| { |
| protocol: "fuchsia.test.Suite", |
| from: "#test", |
| }, |
| ], |
| } |