# -*- 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/. EXPORTS.mozilla.net += [ 'ADocumentChannelBridge.h', 'ChannelEventQueue.h', 'DocumentChannel.h', 'DocumentChannelChild.h', 'DocumentChannelParent.h', 'DocumentLoadListener.h', 'InputChannelThrottleQueueChild.h', 'InputChannelThrottleQueueParent.h', 'NeckoChild.h', 'NeckoCommon.h', 'NeckoMessageUtils.h', 'NeckoParent.h', 'NeckoTargetHolder.h', 'ParentProcessDocumentChannel.h', 'SocketProcessBridgeChild.h', 'SocketProcessBridgeParent.h', 'SocketProcessChild.h', 'SocketProcessHost.h', 'SocketProcessImpl.h', 'SocketProcessParent.h', ] UNIFIED_SOURCES += [ 'ChannelEventQueue.cpp', 'DocumentChannel.cpp', 'DocumentChannelChild.cpp', 'DocumentChannelParent.cpp', 'DocumentLoadListener.cpp', 'InputChannelThrottleQueueChild.cpp', 'InputChannelThrottleQueueParent.cpp', 'NeckoChild.cpp', 'NeckoParent.cpp', 'NeckoTargetHolder.cpp', 'ParentProcessDocumentChannel.cpp', 'SocketProcessBridgeChild.cpp', 'SocketProcessBridgeParent.cpp', 'SocketProcessChild.cpp', 'SocketProcessHost.cpp', 'SocketProcessImpl.cpp', 'SocketProcessParent.cpp', ] IPDL_SOURCES = [ 'NeckoChannelParams.ipdlh', 'PChannelDiverter.ipdl', 'PDataChannel.ipdl', 'PDocumentChannel.ipdl', 'PFileChannel.ipdl', 'PInputChannelThrottleQueue.ipdl', 'PNecko.ipdl', 'PSimpleChannel.ipdl', 'PSocketProcess.ipdl', 'PSocketProcessBridge.ipdl' ] # needed so --disable-webrtc builds work (yes, a bit messy) if not CONFIG['MOZ_WEBRTC']: IPDL_SOURCES += [ '../../media/mtransport/ipc/PStunAddrsRequest.ipdl', '../../media/mtransport/ipc/PWebrtcTCPSocket.ipdl', '../../media/mtransport/ipc/WebrtcProxyConfig.ipdlh', ] EXPORTS.mozilla.net += [ '../../media/mtransport/ipc/NrIceStunAddrMessageUtils.h', '../../media/mtransport/ipc/PStunAddrsParams.h', ] include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ '/caps', '/dom/base', '/media/mtransport', '/media/webrtc', '/modules/libjar', '/netwerk/base', '/netwerk/protocol/http', '/security/manager/ssl', '/xpcom/threads' ] # Add libFuzzer configuration directives include('/tools/fuzzing/libfuzzer-config.mozbuild')