123456789101112131415161718192021222324252627 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: VerteDinde <[email protected]>
- 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() {
|