summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/third_party_build/webrtc.mozbuild
blob: 1009e88fca44213a8e3d0ddcbd80d7720c877dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
if CONFIG['MOZ_WEBRTC']:
    DEFINES['HAVE_UINT64_T'] = True

    if CONFIG['OS_TARGET'] != 'WINNT':
        DEFINES['WEBRTC_POSIX'] = True
        DEFINES['WEBRTC_BUILD_LIBEVENT'] = True

    if CONFIG['OS_TARGET'] == 'Linux':
        DEFINES['WEBRTC_LINUX'] = True
    elif CONFIG['OS_TARGET'] == 'Darwin':
        DEFINES['WEBRTC_MAC'] = True
    elif CONFIG['OS_TARGET'] == 'WINNT':
        DEFINES['WEBRTC_WIN'] = True
        DEFINES['HAVE_WINSOCK2_H'] = True
    elif CONFIG['OS_TARGET'] in ('DragonFly', 'FreeBSD', 'NetBSD', 'OpenBSD'):
        DEFINES['WEBRTC_BSD'] = True
    elif CONFIG['OS_TARGET'] == 'Android':
        DEFINES['WEBRTC_ANDROID'] = True

    if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
        CXXFLAGS += ['-Wno-error=shadow']