47 lines
915 B
Plaintext
47 lines
915 B
Plaintext
// Copyright 2022 The Chromium Authors
|
|
// 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",
|
|
],
|
|
use: [
|
|
{
|
|
directory: "config-data",
|
|
rights: [ "r*" ],
|
|
path: "/config/data",
|
|
},
|
|
{
|
|
storage: "cache",
|
|
path: "/cache",
|
|
},
|
|
{
|
|
storage: "custom_artifacts",
|
|
path: "/custom_artifacts",
|
|
},
|
|
{
|
|
storage: "data",
|
|
path: "/data",
|
|
},
|
|
{
|
|
storage: "tmp",
|
|
path: "/tmp",
|
|
},
|
|
{
|
|
protocol: [
|
|
"fuchsia.buildinfo.Provider",
|
|
"fuchsia.hwinfo.Product",
|
|
"fuchsia.intl.PropertyProvider",
|
|
"fuchsia.media.ProfileProvider",
|
|
"fuchsia.process.Launcher",
|
|
],
|
|
},
|
|
{
|
|
protocol: [
|
|
"fuchsia.tracing.perfetto.ProducerConnector",
|
|
],
|
|
availability: "optional",
|
|
},
|
|
],
|
|
}
|