blob: faa14d7541d65b9d6b709aca13c71afb72187f20 [file] [log] [blame]
// Copyright 2020 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: [
"//sdk/lib/diagnostics/syslog/client.shard.cml",
"//src/sys/test_runners/rust/default.shard.cml",
],
// The binary to run for this component.
program: {
binary: "bin/component_manager_test_resolvers_integration_test",
},
// Capabilities defined by this component.
capabilities: [
{
resolver: "example_resolver",
path: "/svc/fuchsia.sys2.ComponentResolver",
},
],
// Capabilities used by this component.
use: [
{ protocol: "fidl.test.components.Trigger" },
],
// Capabilities exposed to the component's parent.
expose: [
{
resolver: "example_resolver",
from: "self",
},
],
}