mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 04:46:28 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
57 lines
2.3 KiB
C
57 lines
2.3 KiB
C
--- chrome/common/webui_url_constants.h.orig 2024-04-15 20:33:50 UTC
|
|
+++ chrome/common/webui_url_constants.h
|
|
@@ -437,24 +437,24 @@ extern const char kOsUIVersionURL[];
|
|
extern const char kOsUIVersionURL[];
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUIWebUIJsErrorHost[];
|
|
extern const char kChromeUIWebUIJsErrorURL[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_CHROMEOS_ASH)
|
|
+ BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUIConnectorsInternalsHost[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_FUCHSIA)
|
|
+ BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUIDiscardsHost[];
|
|
extern const char kChromeUIDiscardsURL[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_FUCHSIA)
|
|
+ BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUIWebAppSettingsURL[];
|
|
extern const char kChromeUIWebAppSettingsHost[];
|
|
#endif
|
|
@@ -469,14 +469,14 @@ extern const char kChromeUILinuxProxyConfigHost[];
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
|
|
- BUILDFLAG(IS_ANDROID)
|
|
+ BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUISandboxHost[];
|
|
#endif
|
|
|
|
// TODO(crbug.com/1052397): Revisit the macro expression once build flag switch
|
|
// of lacros-chrome is complete.
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA) || \
|
|
- (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS))
|
|
+ (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || BUILDFLAG(IS_BSD)
|
|
extern const char kChromeUIBrowserSwitchHost[];
|
|
extern const char kChromeUIBrowserSwitchURL[];
|
|
extern const char kChromeUIIntroHost[];
|
|
@@ -492,7 +492,7 @@ extern const char kChromeUIProfilePickerStartupQuery[]
|
|
extern const char kChromeUIProfilePickerStartupQuery[];
|
|
#endif
|
|
|
|
-#if ((BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) && \
|
|
+#if ((BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)) && \
|
|
defined(TOOLKIT_VIEWS)) || \
|
|
defined(USE_AURA)
|
|
extern const char kChromeUITabModalConfirmDialogHost[];
|