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: "test_fonts", 8 url: "fuchsia-pkg://fuchsia.com/fonts_configurable_for_test#meta/fonts_configurable_for_test.cm", 9 }, 10 ], 11 offer: [ 12 { 13 protocol: "fuchsia.logger.LogSink", 14 from: "parent", 15 to: "#test_fonts", 16 }, 17 { 18 directory: "pkg", 19 subdir: "test_fonts", 20 from: "framework", 21 to: "#test_fonts", 22 as: "config-data", 23 rights: [ "r*" ], 24 } 25 ], 26 use: [ 27 { 28 protocol: "fuchsia.fonts.Provider", 29 from: "#test_fonts", 30 }, 31 ], 32 facets: { 33 "fuchsia.test": { 34 // TODO(crbug.com/1408597): Remove when the isolated font provider 35 // component is subpackaged. 36 "deprecated-allowed-packages": [ "fonts_configurable_for_test" ], 37 }, 38 }, 39} 40