xref: /aosp_15_r20/external/cronet/build/config/fuchsia/test/fonts.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: "isolated_font_provider",
8      url: "fuchsia-pkg://fuchsia.com/fonts_hermetic_for_test#meta/font_provider_hermetic_for_test.cm",
9    },
10  ],
11  use: [
12    {
13      protocol: "fuchsia.fonts.Provider",
14      from: "#isolated_font_provider",
15    },
16  ],
17  offer: [
18    {
19      protocol: [
20        "fuchsia.logger.LogSink",
21        "fuchsia.tracing.provider.Registry",
22      ],
23      from: "parent",
24      to: "#isolated_font_provider",
25    },
26  ],
27  facets: {
28    "fuchsia.test": {
29      // TODO(crbug.com/1408597): Remove when the isolated font provider
30      // component is subpackaged.
31      "deprecated-allowed-packages": [ "fonts_hermetic_for_test" ],
32    },
33  },
34}
35