mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 02:56:39 -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/
11 lines
589 B
C++
11 lines
589 B
C++
--- components/variations/service/variations_service.cc.orig 2024-08-14 20:54:58 UTC
|
|
+++ components/variations/service/variations_service.cc
|
|
@@ -101,7 +101,7 @@ std::string GetPlatformString() {
|
|
return "android";
|
|
#elif BUILDFLAG(IS_FUCHSIA)
|
|
return "fuchsia";
|
|
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) || BUILDFLAG(IS_SOLARIS)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) || BUILDFLAG(IS_SOLARIS) || BUILDFLAG(IS_BSD)
|
|
// Default BSD and SOLARIS to Linux to not break those builds, although these
|
|
// platforms are not officially supported by Chrome.
|
|
return "linux";
|