blob: e20d12c53a293b0ebff43e3e6669c9d46655a4b2 [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.
{
children: [
{
name: "validation-client",
// A relative path is used here because validation-client is
// expected to be in the same package as the application component.
url: "#meta/validation-client.cm",
},
],
use: [
{
// validation-client exposes "validation_server_pkg"
// from its child, validation-server.
directory: "validation_server_pkg",
from: "#validation-client",
rights: [ "rx*" ],
path: "/vulkan_validation_pkg",
},
],
offer: [
{
protocol: [
"fuchsia.inspect.InspectSink",
"fuchsia.logger.LogSink",
],
from: "parent",
to: "#validation-client",
},
],
}