2017-01-24 15:09:23 +00:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
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 = `/Applications/Google Chrome.app/Contents/MacOS/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
|