79 lines
1.6 KiB
Plaintext
79 lines
1.6 KiB
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",
|
||
|
|
],
|
||
|
|
// Add capability providers.
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
name: "build-info-service",
|
||
|
|
url: "fuchsia-pkg://fuchsia.com/fake-build-info#meta/fake_build_info.cm",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: "intl_property_manager",
|
||
|
|
url: "fuchsia-pkg://fuchsia.com/intl_property_manager#meta/intl_property_manager.cm",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
offer: [
|
||
|
|
{
|
||
|
|
protocol: "fuchsia.logger.LogSink",
|
||
|
|
from: "parent",
|
||
|
|
to: [ "#intl_property_manager" ],
|
||
|
|
}
|
||
|
|
],
|
||
|
|
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" ],
|
||
|
|
from: "#build-info-service",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
protocol: [ "fuchsia.intl.PropertyProvider" ],
|
||
|
|
from: "#intl_property_manager",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
protocol: [
|
||
|
|
"fuchsia.hwinfo.Product",
|
||
|
|
"fuchsia.media.ProfileProvider",
|
||
|
|
"fuchsia.process.Launcher",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
protocol: [
|
||
|
|
"fuchsia.tracing.perfetto.ProducerConnector",
|
||
|
|
],
|
||
|
|
availability: "optional",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
facets: {
|
||
|
|
"fuchsia.test": {
|
||
|
|
"deprecated-allowed-packages": [
|
||
|
|
"fake-build-info",
|
||
|
|
"intl_property_manager",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|