c5b9f766f3
* chore: bump chromium in DEPS to 117.0.5921.0 * chore: update chromium patches * 4721409: Remove redundant ARC configuration in /components | https://chromium-review.googlesource.com/c/chromium/src/+/4721409 * 4643750: Add V8_LOW_PRIORITY_TQ for main thread | https://chromium-review.googlesource.com/c/chromium/src/+/4643750 * 4022621: Re-register status item when owner of status watcher is changed | https://chromium-review.googlesource.com/c/chromium/src/+/4022621 * chore: update V8/boringssl patches * fixup! 4643750: Add V8_LOW_PRIORITY_TQ for main thread | https://chromium-review.googlesource.com/c/chromium/src/+/4643750 * chore: bump chromium in DEPS to 117.0.5923.0 * build [debug]: remove assert 4722125: Update enterprise content analysis buildflags usage | https://chromium-review.googlesource.com/c/chromium/src/+/4722125 * chore: manually rollback to 117.0.5921.0 * build [arc]: ARC conversion in auto_updater * build [arc]: ARC conversion in browser/api * build [arc]: ARC conversion in notifications/mac * build [arc]: ARC conversion in in_app_purchase * build [arc]: ARC conversion in browser/ui * build [arc]: ARC conversion in ui/cocoa * build [arc]: ARC conversion in shell/common * build [arc]: ARC conversion in OSR * build [arc]: ARC conversion in login_helper * build [arc]: ARC conversion in app_mas * build [arc]: fix up ARC syntax (thanks @codebytere!) * 4726946: [Extensions] Work around dangling BrowserContext pointer. | https://chromium-review.googlesource.com/c/chromium/src/+/4726946 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> Co-authored-by: VerteDinde <keeleymhammond@gmail.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 8d1aa0153c7b33066fbeb2679fcf1a32549389c3..a96831301d9e60e73092a095d42fecc0a8019144 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() {
|