31 lines
776 B
Plaintext
31 lines
776 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.
|
|
{
|
|
children: [
|
|
{
|
|
name: "context_provider",
|
|
url: "fuchsia-pkg://fuchsia.com/web_engine#meta/context_provider.cm",
|
|
},
|
|
],
|
|
use: [
|
|
{
|
|
protocol: [
|
|
"fuchsia.web.ContextProvider",
|
|
],
|
|
from: "#context_provider",
|
|
dependency: "weak",
|
|
},
|
|
],
|
|
offer: [
|
|
{
|
|
protocol: [
|
|
"fuchsia.feedback.ComponentDataRegister",
|
|
"fuchsia.feedback.CrashReportingProductRegister",
|
|
],
|
|
from: "parent",
|
|
to: "#context_provider",
|
|
},
|
|
],
|
|
}
|