1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 if CONFIG['MOZ_WEBRTC_SIGNALING']:
7 if CONFIG['OS_TARGET'] == 'WINNT':
8 DEFINES['SIP_OS_WINDOWS'] = True
10 'sdp_services_win32.c',
12 elif CONFIG['OS_TARGET'] == 'Darwin':
13 DEFINES['SIP_OS_OSX'] = True
15 'sdp_services_unix.c',
18 DEFINES['SIP_OS_LINUX'] = True
20 'sdp_services_unix.c',
23 # Add libFuzzer configuration directives
24 include('/tools/fuzzing/libfuzzer-config.mozbuild')
32 # Multiple definitions of "logTag" mean we can't use unified build here.