$NetBSD$ * Part of patchset to build electron on NetBSD * Based on OpenBSD's chromium patches, and FreeBSD's electron patches --- components/system_cpu/cpu_probe.cc.orig 2025-02-24 19:59:26.000000000 +0000 +++ components/system_cpu/cpu_probe.cc @@ -30,6 +30,9 @@ std::unique_ptr CpuProbe::Crea return CpuProbeWin::Create(); #elif BUILDFLAG(IS_MAC) return CpuProbeMac::Create(); +#elif BUILDFLAG(IS_BSD) + NOTIMPLEMENTED(); + return nullptr; #else return nullptr; #endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)