blob: f63eb819dbb8d988523b2a72c8477fc5872c703d [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: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/base_resolver",
args: [ "base_resolver" ],
},
capabilities: [
{
resolver: "base_resolver",
path: "/svc/fuchsia.component.resolution.Resolver",
},
{ protocol: "fuchsia.component.resolution.Resolver" },
],
use: [
{ protocol: "fuchsia.pkg.PackageCache" },
{
directory: "pkgfs-packages",
rights: [ "rx*" ],
path: "/pkgfs/packages",
},
],
expose: [
{
resolver: "base_resolver",
from: "self",
},
{
protocol: "fuchsia.component.resolution.Resolver",
from: "self",
},
],
config: {
enable_subpackages: { type: "bool" },
},
}