Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 956123
Collapse All | Expand All

(-)a/var/tmp/portage/www-client/chromium-136.0.7103.92/work/chromium-136.0.7103.92/components/safe_browsing/buildflags.gni (-8 / +2 lines)
Lines 12-25 declare_args() { Link Here
12
  # safe browsing feature. Safe browsing can be compiled in 3 different levels:
12
  # safe browsing feature. Safe browsing can be compiled in 3 different levels:
13
  # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an
13
  # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an
14
  # external API.
14
  # external API.
15
  if (is_ios || is_castos || is_cast_android || is_fuchsia) {
15
  safe_browsing_mode = 0
16
    safe_browsing_mode = 0
17
  } else if (is_android) {
18
    safe_browsing_mode = 2
19
  } else {
20
    safe_browsing_mode = 1
21
  }
22
  # Allows building without //third_party/unrar included, for license reasons
16
  # Allows building without //third_party/unrar included, for license reasons
23
  safe_browsing_use_unrar = true
17
  safe_browsing_use_unrar = false
24
}
18
}
(-)a/var/tmp/portage/www-client/chromium-136.0.7103.92/work/chromium-136.0.7103.92/components/enterprise/buildflags/buildflags.gni (-3 / +2 lines)
Lines 9-20 import("//build/config/ui.gni") Link Here
9
declare_args() {
9
declare_args() {
10
  # Indicates support for content analysis against a cloud agent for Enterprise
10
  # Indicates support for content analysis against a cloud agent for Enterprise
11
  # Connector policies.
11
  # Connector policies.
12
  enterprise_cloud_content_analysis =
12
  enterprise_cloud_content_analysis = false
13
      is_win || is_mac || is_linux || is_chromeos
14
  # Indicates support for content analysis against a cloud agent for Enterprise
13
  # Indicates support for content analysis against a cloud agent for Enterprise
15
  # Connector policies.
14
  # Connector policies.
16
  enterprise_local_content_analysis = is_win || is_mac || is_linux
15
  enterprise_local_content_analysis = false
17
  # Indicates support for Data Control rules.
16
  # Indicates support for Data Control rules.
18
  enterprise_data_controls =
17
  enterprise_data_controls =
(-)a/var/tmp/portage/www-client/chromium-136.0.7103.92/work/chromium-136.0.7103.92/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc (-1 / +1 lines)
Lines 841-847 void ChromeBrowserMainExtraPartsProfiles:: Link Here
841
  enterprise_connectors::ExtensionTelemetryEventRouterFactory::GetInstance();
841
  enterprise_connectors::ExtensionTelemetryEventRouterFactory::GetInstance();
842
#endif
842
#endif
843
  enterprise_connectors::ConnectorsServiceFactory::GetInstance();
843
  enterprise_connectors::ConnectorsServiceFactory::GetInstance();
844
  enterprise_connectors::ReportingEventRouterFactory::GetInstance();
844
  //enterprise_connectors::ReportingEventRouterFactory::GetInstance();
845
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
845
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
846
    BUILDFLAG(IS_WIN)
846
    BUILDFLAG(IS_WIN)
847
  enterprise_connectors::DeviceTrustConnectorServiceFactory::GetInstance();
847
  enterprise_connectors::DeviceTrustConnectorServiceFactory::GetInstance();

Return to bug 956123