tor-browser

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

context_provider.shard.test-cml (776B)


      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: "context_provider",
      8             url: "fuchsia-pkg://fuchsia.com/web_engine#meta/context_provider.cm",
      9         },
     10     ],
     11     use: [
     12         {
     13             protocol: [
     14                 "fuchsia.web.ContextProvider",
     15             ],
     16             from: "#context_provider",
     17             dependency: "weak",
     18         },
     19     ],
     20     offer: [
     21         {
     22             protocol: [
     23                 "fuchsia.feedback.ComponentDataRegister",
     24                 "fuchsia.feedback.CrashReportingProductRegister",
     25             ],
     26             from: "parent",
     27             to: "#context_provider",
     28         },
     29     ],
     30 }