xref: /aosp_15_r20/external/cronet/build/config/fuchsia/test/context_provider.shard.test-cml (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1// Copyright 2022 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4{
5    children: [
6        {
7            name: "context_provider",
8            url: "fuchsia-pkg://fuchsia.com/web_engine#meta/context_provider.cm",
9        },
10    ],
11    use: [
12        {
13            protocol: [
14                "fuchsia.web.ContextProvider",
15            ],
16            from: "#context_provider",
17            dependency: "weak",
18        },
19    ],
20    offer: [
21        {
22            protocol: [
23                "fuchsia.feedback.ComponentDataRegister",
24                "fuchsia.feedback.CrashReportingProductRegister",
25            ],
26            from: "parent",
27            to: "#context_provider",
28        },
29    ],
30}
31