Bug 1841192 - Fix typo in check for mips. r=firefox-build-system-reviewers,sergesanspaille

Differential Revision: https://phabricator.services.mozilla.com/D182532
This commit is contained in:
Mike Hommey 2023-06-30 08:09:05 +00:00
Родитель d5664c7666
Коммит fef9b362d8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,7 @@ if CONFIG['MOZ_WEBRTC']:
DEFINES['WEBRTC_LINUX'] = True
if CONFIG['CPU_ARCH'] == 'x86' or CONFIG['CPU_ARCH'] == 'x86_64' or \
CONFIG['CPU_ARCH'] == 'arm' or CONFIG['CPU_ARCH'] == 'aarch64' or \
(CONFIG['TARGET_ENDIANNESS'] == 'little' and CONFIG['CPU_ARCH'].startsWith('mips')):
(CONFIG['TARGET_ENDIANNESS'] == 'little' and CONFIG['CPU_ARCH'].startswith('mips')):
DEFINES['WEBRTC_USE_PIPEWIRE'] = True
elif CONFIG['OS_TARGET'] == 'Darwin':
DEFINES['WEBRTC_MAC'] = True