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',
|
|
|
|
]
|
|
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
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',
|
2013-07-01 17:56:28 +04:00
|
|
|
'PNecko.ipdl',
|
2014-04-03 15:08:34 +04:00
|
|
|
'PRtspChannel.ipdl',
|
2013-09-23 14:12:11 +04:00
|
|
|
'PRtspController.ipdl',
|
2013-07-01 17:56:28 +04:00
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
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',
|
2013-11-28 18:25:39 +04:00
|
|
|
'/modules/libjar',
|
2015-01-16 13:11:06 +03:00
|
|
|
'/netwerk/base',
|
|
|
|
'/netwerk/protocol/http',
|
2013-11-28 18:25:39 +04:00
|
|
|
]
|