mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
20 lines
897 B
C++
20 lines
897 B
C++
--- chrome/common/channel_info_posix.cc.orig 2024-06-17 12:56:06 UTC
|
|
+++ chrome/common/channel_info_posix.cc
|
|
@@ -93,7 +93,7 @@ std::string GetChannelSuffixForDataDir() {
|
|
}
|
|
}
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
std::string GetChannelSuffixForExtraFlagsEnvVarName() {
|
|
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
|
|
const auto channel_state = GetChannelImpl();
|
|
@@ -121,7 +121,7 @@ std::string GetChannelSuffixForExtraFlagsEnvVarName()
|
|
|
|
// TODO(crbug.com/40118868): Revisit the macro expression once build flag switch
|
|
// of lacros-chrome is complete.
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_BSD)
|
|
std::string GetDesktopName(base::Environment* env) {
|
|
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
|
|
// Google Chrome packaged as a snap is a special case: the application name
|