tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

fonts.shard.test-cml (917B)


      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.tracing.provider.Registry",
     21       ],
     22       from: "parent",
     23       to: "#isolated_font_provider",
     24     },
     25     {
     26       dictionary: "diagnostics",
     27       from: "parent",
     28       to: "#isolated_font_provider",
     29     },
     30   ],
     31   facets: {
     32     "fuchsia.test": {
     33       // TODO(crbug.com/42050571): Remove when the isolated font provider
     34       // component is subpackaged.
     35       "deprecated-allowed-packages": [ "fonts_hermetic_for_test" ],
     36     },
     37   },
     38 }