$NetBSD$ * Part of patchset to build electron on NetBSD * Based on OpenBSD's chromium patches, and FreeBSD's electron patches --- components/embedder_support/user_agent_utils.cc.orig 2025-02-24 19:59:26.000000000 +0000 +++ components/embedder_support/user_agent_utils.cc @@ -500,6 +500,9 @@ std::string GetPlatformForUAMetadata() { # else return "Chromium OS"; # endif +#elif BUILDFLAG(IS_BSD) + // The internet is weird... + return "Linux"; #else return std::string(version_info::GetOSType()); #endif