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#meta/fonts.cm", 9 }, 10 ], 11 use: [ 12 { 13 protocol: "fuchsia.fonts.Provider", 14 from: "#isolated_font_provider", 15 }, 16 ], 17 offer: [ 18 { 19 directory: "config-data", 20 from: "parent", 21 to: "#isolated_font_provider", 22 subdir: "fonts", 23 }, 24 { 25 protocol: [ 26 "fuchsia.logger.LogSink", 27 "fuchsia.tracing.provider.Registry", 28 ], 29 from: "parent", 30 to: "#isolated_font_provider", 31 }, 32 ], 33 facets: { 34 "fuchsia.test": { 35 "deprecated-allowed-packages": [ "fonts" ], 36 }, 37 }, 38} 39