blob: 6a5600fb8708976aa3e43ea407b45081e48f984b [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",
},
],
}