summaryrefslogtreecommitdiff
path: root/www/ungoogled-chromium/files/patch-chrome_test_chromedriver_chrome_chrome__finder.cc
blob: f5fe40c84bdf16bef64522a6ed92eb5108edd83f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- chrome/test/chromedriver/chrome/chrome_finder.cc.orig	2023-08-04 12:10:50 UTC
+++ chrome/test/chromedriver/chrome/chrome_finder.cc
@@ -57,7 +57,7 @@ void GetApplicationDirs(std::vector<base::FilePath>* l
         installation_locations[i].Append(L"Chromium\\Application"));
   }
 }
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
 void GetApplicationDirs(std::vector<base::FilePath>* locations) {
   // TODO: Respect users' PATH variables.
   // Until then, we use an approximation of the most common defaults.
@@ -157,7 +157,7 @@ bool FindChrome(base::FilePath* browser_exe) {
     base::FilePath(chrome::kGoogleChromeForTestingBrowserProcessExecutablePath),
     base::FilePath(chrome::kGoogleChromeBrowserProcessExecutablePath),
     base::FilePath(chrome::kChromiumBrowserProcessExecutablePath),
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
     base::FilePath(chrome::kBrowserProcessExecutablePath),
     base::FilePath("chrome"),  // Chrome for Testing or Google Chrome
     base::FilePath("google-chrome"),