blob: bb7955ba0f5fea5139d9fbb6449fe2f1990701b8 [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.logger.LogSink" ],
from: "parent",
to: "#validation-client",
},
],
}