mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
35 lines
1.7 KiB
C++
35 lines
1.7 KiB
C++
--- chrome/browser/component_updater/registration.cc.orig 2025-04-16 18:18:42 UTC
|
|
+++ chrome/browser/component_updater/registration.cc
|
|
@@ -101,7 +101,7 @@
|
|
#endif // BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_CHROMEOS)
|
|
+ BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
#include "components/component_updater/installer_policies/amount_extraction_heuristic_regexes_component_installer.h"
|
|
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
|
|
// BUILDFLAG(IS_CHROMEOS)
|
|
@@ -114,7 +114,7 @@
|
|
#include "chrome/browser/component_updater/lacros_component_remover.h"
|
|
#endif // BUILDFLAG(IS_CHROMEOS)
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
#include "chrome/browser/component_updater/wasm_tts_engine_component_installer.h"
|
|
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
|
|
@@ -261,12 +261,12 @@ void RegisterComponentsForUpdate() {
|
|
RegisterCookieReadinessListComponent(cus);
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_CHROMEOS)
|
|
+ BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
RegisterAmountExtractionHeuristicRegexesComponent(cus);
|
|
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
|
|
// BUILDFLAG(IS_CHROMEOS)
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
if (features::IsWasmTtsComponentUpdaterEnabled()) {
|
|
RegisterWasmTtsEngineComponent(cus);
|
|
}
|