# -*- Mode: python; c-basic-offset: 4; 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/. XPIDL_MODULE = 'content_webrtc' EXPORTS += [ 'MediaEngine.h', 'MediaEngineCameraVideoSource.h', 'MediaEngineDefault.h', 'MediaTrackConstraints.h', ] if CONFIG['MOZ_WEBRTC']: EXPORTS += ['AudioOutputObserver.h', 'MediaEngineWebRTC.h'] UNIFIED_SOURCES += [ 'MediaEngineCameraVideoSource.cpp', 'MediaEngineTabVideoSource.cpp', 'MediaEngineWebRTCAudio.cpp', 'MediaEngineWebRTCVideo.cpp', ] # MediaEngineWebRTC.cpp needs to be built separately. SOURCES += [ 'MediaEngineWebRTC.cpp', ] LOCAL_INCLUDES += [ '/dom/base', '/dom/camera', '/media/libyuv/include', '/media/webrtc/signaling/src/common', '/media/webrtc/signaling/src/common/browser_logging', '/media/webrtc/trunk', ] # Gonk camera source. if CONFIG['MOZ_B2G_CAMERA']: EXPORTS += ['MediaEngineGonkVideoSource.h'] UNIFIED_SOURCES += [ 'MediaEngineGonkVideoSource.cpp', ] XPIDL_SOURCES += [ 'nsITabSource.idl' ] UNIFIED_SOURCES += [ 'MediaEngineDefault.cpp', 'PeerIdentity.cpp', ] EXPORTS.mozilla += [ 'PeerIdentity.h', ] include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul' if CONFIG['OS_ARCH'] == 'WINNT': DEFINES['NOMINMAX'] = True if CONFIG['_MSC_VER']: CXXFLAGS += [ '-wd4275', # non dll-interface class used as base for dll-interface class ] FAIL_ON_WARNINGS = True