blob: 7b768b14e94a61428cb193e50c2cb1d276f3d48d [file] [log] [blame]
// Copyright 2025 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: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/developer_console_integration_test_support_bin",
args: [ "serve-dirs" ],
},
capabilities: [
{
directory: "boot",
rights: [ "rx*" ],
path: "/boot",
},
{
directory: "foo",
rights: [ "r*" ],
path: "/foo",
},
{
directory: "root-ssl-certificates",
rights: [ "r*" ],
path: "/root-ssl-certificates",
},
{ dictionary: "directories" },
],
offer: [
{
directory: "foo",
from: "self",
to: "self/directories",
},
{
directory: "root-ssl-certificates",
from: "self",
to: "self/directories",
},
// Ensure we have coverage for offers from void.
{
directory: "void",
from: "void",
to: "self/directories",
availability: "optional",
},
],
expose: [
{
directory: [ "boot" ],
from: "self",
},
{
dictionary: [ "directories" ],
from: "self",
},
],
}