2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +04:00
|
|
|
# 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/.
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.net += [
|
|
|
|
'ChannelEventQueue.h',
|
|
|
|
'NeckoChild.h',
|
|
|
|
'NeckoCommon.h',
|
|
|
|
'NeckoMessageUtils.h',
|
|
|
|
'NeckoParent.h',
|
2017-06-12 01:21:00 +03:00
|
|
|
'NeckoTargetHolder.h',
|
2019-01-11 23:55:07 +03:00
|
|
|
'SocketProcessBridgeChild.h',
|
|
|
|
'SocketProcessBridgeParent.h',
|
2019-01-11 21:57:23 +03:00
|
|
|
'SocketProcessChild.h',
|
|
|
|
'SocketProcessHost.h',
|
|
|
|
'SocketProcessImpl.h',
|
|
|
|
'SocketProcessParent.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-11-13 06:50:41 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'ChannelEventQueue.cpp',
|
|
|
|
'NeckoChild.cpp',
|
|
|
|
'NeckoCommon.cpp',
|
|
|
|
'NeckoParent.cpp',
|
2017-06-12 01:21:00 +03:00
|
|
|
'NeckoTargetHolder.cpp',
|
2019-01-11 23:55:07 +03:00
|
|
|
'SocketProcessBridgeChild.cpp',
|
|
|
|
'SocketProcessBridgeParent.cpp',
|
2019-01-11 21:57:23 +03:00
|
|
|
'SocketProcessChild.cpp',
|
|
|
|
'SocketProcessHost.cpp',
|
|
|
|
'SocketProcessImpl.cpp',
|
|
|
|
'SocketProcessParent.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-07-01 17:56:28 +04:00
|
|
|
IPDL_SOURCES = [
|
|
|
|
'NeckoChannelParams.ipdlh',
|
2014-03-11 02:04:28 +04:00
|
|
|
'PChannelDiverter.ipdl',
|
2015-03-27 23:12:37 +03:00
|
|
|
'PDataChannel.ipdl',
|
2017-04-12 21:43:50 +03:00
|
|
|
'PFileChannel.ipdl',
|
2013-07-01 17:56:28 +04:00
|
|
|
'PNecko.ipdl',
|
2017-07-27 23:34:54 +03:00
|
|
|
'PSimpleChannel.ipdl',
|
2019-01-11 23:55:07 +03:00
|
|
|
'PSocketProcess.ipdl',
|
|
|
|
'PSocketProcessBridge.ipdl'
|
2013-07-01 17:56:28 +04:00
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
2017-03-24 04:04:41 +03:00
|
|
|
# needed so --disable-webrtc builds work (yes, a bit messy)
|
|
|
|
if not CONFIG['MOZ_WEBRTC']:
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
'../../media/mtransport/ipc/PStunAddrsRequest.ipdl',
|
2018-06-05 20:10:16 +03:00
|
|
|
'../../media/mtransport/ipc/PWebrtcProxyChannel.ipdl',
|
2017-03-24 04:04:41 +03:00
|
|
|
]
|
|
|
|
EXPORTS.mozilla.net += [
|
|
|
|
'../../media/mtransport/ipc/NrIceStunAddrMessageUtils.h',
|
|
|
|
'../../media/mtransport/ipc/PStunAddrsParams.h',
|
|
|
|
]
|
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-28 18:25:39 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2014-08-29 04:20:27 +04:00
|
|
|
'/caps',
|
2017-06-14 03:15:00 +03:00
|
|
|
'/dom/base',
|
2019-02-26 00:50:42 +03:00
|
|
|
'/media/mtransport',
|
|
|
|
'/media/webrtc',
|
2013-11-28 18:25:39 +04:00
|
|
|
'/modules/libjar',
|
2015-01-16 13:11:06 +03:00
|
|
|
'/netwerk/base',
|
|
|
|
'/netwerk/protocol/http',
|
2019-01-11 21:57:23 +03:00
|
|
|
'/xpcom/threads'
|
2013-11-28 18:25:39 +04:00
|
|
|
]
|
2018-04-05 22:48:11 +03:00
|
|
|
|
|
|
|
# Add libFuzzer configuration directives
|
|
|
|
include('/tools/fuzzing/libfuzzer-config.mozbuild')
|