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