gecko/netwerk/protocol/rtsp/moz.build
Gregory Szorc 97c0ff0e56 Bug 951352 - Disallow XPIDL_MODULE if XPIDL_SOURCES isn't defined; r=glandium
Once upon a time XPIDL_MODULE and MODULE were kind of the same and
MODULE got mass-converted into XPIDL_MODULE with the removal of MODULE
in bug 939044. Unfortunately, we forgot to add a check for XPIDL_MODULE
being defined if XPIDL_SOURCES isn't (a build config that makes no sense
and only results in cargo culting).

This patch corrects that oversight.

--HG--
extra : rebase_source : d609e2baa8d16df97c944bc9def26ad05527d937
2013-12-17 12:45:56 -08:00

66 lines
1.6 KiB
Python

# 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/.
EXPORTS.mozilla.net += [
'controller/RtspController.h',
'controller/RtspControllerChild.h',
'controller/RtspControllerParent.h',
'controller/RtspMetaData.h',
'rtsp/RTSPSource.h',
'RtspChannel.h',
'RtspHandler.h',
]
# These files cannot be built in unified mode because they force NSPR logging.
SOURCES += [
'controller/RtspController.cpp',
'controller/RtspControllerChild.cpp',
'controller/RtspControllerParent.cpp',
'controller/RtspMetaData.cpp',
'RtspChannel.cpp',
'RtspHandler.cpp',
]
# Android sources
SOURCES += [
'rtsp/AAMRAssembler.cpp',
'rtsp/AAVCAssembler.cpp',
'rtsp/AH263Assembler.cpp',
'rtsp/AMPEG4AudioAssembler.cpp',
'rtsp/AMPEG4ElementaryAssembler.cpp',
'rtsp/APacketSource.cpp',
'rtsp/ARawAudioAssembler.cpp',
'rtsp/ARTPAssembler.cpp',
'rtsp/ARTPConnection.cpp',
'rtsp/ARTPSource.cpp',
'rtsp/ARTPWriter.cpp',
'rtsp/ARTSPConnection.cpp',
'rtsp/ASessionDescription.cpp',
'rtsp/RTSPSource.cpp',
]
FAIL_ON_WARNINGS = True
MSVC_ENABLE_PGO = True
include('/ipc/chromium/chromium-config.mozbuild')
FINAL_LIBRARY = 'necko'
DEFINES['IMPL_NS_NET'] = True
DEFINES['FORCE_PR_LOG'] = True
LOCAL_INCLUDES += [
'../../base/src',
'/content/base/src',
'/content/events/src',
'/xpcom/ds',
'controller',
'rtsp',
]
for var in ('IMPL_NS_NET', 'FORCE_PR_LOG'):
DEFINES[var] = True