2017-01-24 15:09:23 +00:00
|
|
|
// +build linux freebsd netbsd openbsd
|
|
|
|
|
|
|
|
package runner
|
|
|
|
|
|
|
|
const (
|
2018-07-13 03:57:20 +00:00
|
|
|
// DefaultChromePath is the default path to use for Chrome if the
|
|
|
|
// executable is not in $PATH.
|
2017-01-24 15:09:23 +00:00
|
|
|
DefaultChromePath = "/usr/bin/google-chrome"
|
|
|
|
)
|
|
|
|
|
2018-07-13 03:57:20 +00:00
|
|
|
// DefaultChromeNames are the default Chrome executable names to look for in
|
|
|
|
// $PATH.
|
|
|
|
var DefaultChromeNames = []string{
|
2017-01-24 15:09:23 +00:00
|
|
|
"google-chrome",
|
|
|
|
"chromium-browser",
|
2017-05-08 07:17:27 +00:00
|
|
|
"chromium",
|
2017-01-24 15:09:23 +00:00
|
|
|
"google-chrome-beta",
|
|
|
|
"google-chrome-unstable",
|
|
|
|
}
|