tor-browser

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

archivist.shard.test-cml (990B)


      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_archivist",
      8       url: "fuchsia-pkg://fuchsia.com/archivist-for-embedding#meta/archivist-for-embedding.cm",
      9     },
     10   ],
     11   use: [
     12     {
     13       protocol: "fuchsia.logger.Log",
     14       path: "/svc/fuchsia.logger.Log.isolated",
     15       from: "#isolated_archivist",
     16     },
     17     {
     18       protocol: "fuchsia.logger.LogSink",
     19       path: "/svc/fuchsia.logger.LogSink.isolated",
     20       from: "#isolated_archivist",
     21     },
     22   ],
     23   offer: [
     24     {
     25       event_stream: [
     26         "capability_requested",
     27         "directory_ready",
     28       ],
     29       from: "parent",
     30       to: "#isolated_archivist",
     31     },
     32     {
     33       dictionary: "diagnostics",
     34       from: "parent",
     35       to: "#isolated_archivist",
     36     },
     37   ],
     38   facets: {
     39     "fuchsia.test": {
     40         "deprecated-allowed-packages": [ "archivist-for-embedding" ],
     41     },
     42   },
     43 }