-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fuchsia] Component framework v2 variant of web_engine_integration_tests
Also expose fuchsia.web.Debug from context_provider when running as a CFv2 component. This allows test clients to more easily connect to a web_instance's Debug protocol. Bug: 1280703, 1346920 Change-Id: I2950cdcb6fd04a8f01105196f9d03abbb1cdec3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3845254 Reviewed-by: Wez <wez@chromium.org> Commit-Queue: Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/main@{#1043983} NOKEYCHECK=True GitOrigin-RevId: 1e93159487a62039c8e4310042954697968b16ea
- Loading branch information
1 parent
65a6055
commit a710f6b
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2022 The Chromium Authors. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
{ | ||
children: [ | ||
{ | ||
name: "isolated_archivist", | ||
url: "fuchsia-pkg://fuchsia.com/archivist-without-attribution#meta/archivist-without-attribution.cm", | ||
}, | ||
], | ||
use: [ | ||
{ | ||
protocol: "fuchsia.logger.Log", | ||
path: "/svc/fuchsia.logger.Log.isolated", | ||
from: "#isolated_archivist", | ||
}, | ||
{ | ||
protocol: "fuchsia.logger.LogSink", | ||
path: "/svc/fuchsia.logger.LogSink.isolated", | ||
from: "#isolated_archivist", | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
use: [ | ||
{ | ||
protocol: [ | ||
"fuchsia.sys.Environment", | ||
], | ||
}, | ||
], | ||
} |