mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-17 04:30:46 +01:00
macOS: Disable toolchain prompt for tests (see issue #2692)
This commit is contained in:
parent
a12c2ab3e1
commit
492c6c6843
@ -47,6 +47,11 @@ void ClientAppBrowser::OnBeforeCommandLineProcessing(
|
|||||||
command_line->AppendSwitch("disable-gpu-shader-disk-cache");
|
command_line->AppendSwitch("disable-gpu-shader-disk-cache");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(OS_MACOSX)
|
||||||
|
// Disable the toolchain prompt on macOS.
|
||||||
|
command_line->AppendSwitch("use-mock-keychain");
|
||||||
|
#endif
|
||||||
|
|
||||||
DelegateSet::iterator it = delegates_.begin();
|
DelegateSet::iterator it = delegates_.begin();
|
||||||
for (; it != delegates_.end(); ++it)
|
for (; it != delegates_.end(); ++it)
|
||||||
(*it)->OnBeforeCommandLineProcessing(this, command_line);
|
(*it)->OnBeforeCommandLineProcessing(this, command_line);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user