d9ba26273a
* chore: bump chromium in DEPS to 118.0.5982.0 * chore: bump chromium in DEPS to 118.0.5983.0 * chore: bump chromium in DEPS to 118.0.5985.0 * chore: bump chromium in DEPS to 118.0.5987.0 * chore: update v8 patches * chore: update chromium patches * chore: update patches * [PEPC] Add new structs to contain permission request data Refs https://chromium-review.googlesource.com/c/chromium/src/+/4756727 * Add ThumbnailCapturer interface Refs https://chromium-review.googlesource.com/c/chromium/src/+/4812256 * Reland "[ChromeRefresh2023] Update document pip windows for Chrome Refresh" Refs https://chromium-review.googlesource.com/c/chromium/src/+/4814275 * chore: bump chromium in DEPS to 118.0.5989.0 * chore: bump chromium in DEPS to 118.0.5991.0 * chore: update patches --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: VerteDinde <vertedinde@electronjs.org>
|
|
Date: Sun, 1 May 2022 18:01:42 -0700
|
|
Subject: build: disable print_content_analysis
|
|
|
|
Print Content Analysis enables enterprise users to scan to-be-printed
|
|
pages and documents for sensitive data if the OnPrintEnterpriseConnector
|
|
policy is enabled. A conversation with the Chromium team confirmed
|
|
this feature was intended for enterprise Chrome users and not embedders,
|
|
so we're disabling it to prevent build issues/additional unneeded files.
|
|
|
|
This patch can be removed when enable_print_content_analysis can be more
|
|
easily enabled or disabled by default with buildflags.
|
|
|
|
diff --git a/printing/buildflags/buildflags.gni b/printing/buildflags/buildflags.gni
|
|
index fa9004e2ec3e3e785d0ea590ea8c632db7cbadda..da809d75f191fe0437cd783f8689b0b3866e343b 100644
|
|
--- a/printing/buildflags/buildflags.gni
|
|
+++ b/printing/buildflags/buildflags.gni
|
|
@@ -48,7 +48,7 @@ declare_args() {
|
|
|
|
# Enable snapshotting a page when printing for its content to be analyzed for
|
|
# sensitive content by enterprise users.
|
|
- enable_print_content_analysis = is_chromeos || is_win || is_linux || is_mac
|
|
+ enable_print_content_analysis = is_chromeos_ash || is_chromeos_lacros
|
|
}
|
|
|
|
declare_args() {
|