Fix build on Android
There's a bit of system integration that we haven't pulled in (as it has transitive dependencies), so we manually stub it out.
This commit is contained in:
parent
8ac052ad6f
commit
589a744585
@ -14,7 +14,11 @@
|
||||
namespace webrtc {
|
||||
|
||||
#if defined(WEBRTC_ANDROID) && !defined(WEBRTC_CHROMIUM_BUILD)
|
||||
/* webrtc-audio-processing:
|
||||
* We don't support the Android SDK integration for this, so stub out
|
||||
void WarnThatTheCurrentThreadIsProbablyDeadlocked();
|
||||
*/
|
||||
inline void WarnThatTheCurrentThreadIsProbablyDeadlocked() {}
|
||||
#else
|
||||
inline void WarnThatTheCurrentThreadIsProbablyDeadlocked() {}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user