2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:23 +00: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-03-12 17:17:46 +00:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIRemoteOpenFileListener.idl',
|
|
|
|
]
|
|
|
|
|
2013-03-12 05:00:00 +00:00
|
|
|
XPIDL_MODULE = 'necko_ipc'
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.net += [
|
|
|
|
'ChannelEventQueue.h',
|
|
|
|
'NeckoChild.h',
|
|
|
|
'NeckoCommon.h',
|
|
|
|
'NeckoMessageUtils.h',
|
|
|
|
'NeckoParent.h',
|
|
|
|
'RemoteOpenFileChild.h',
|
|
|
|
'RemoteOpenFileParent.h',
|
|
|
|
]
|
|
|
|
|
2013-11-13 02:50:41 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'ChannelEventQueue.cpp',
|
|
|
|
'NeckoChild.cpp',
|
|
|
|
'NeckoCommon.cpp',
|
|
|
|
'NeckoParent.cpp',
|
|
|
|
'RemoteOpenFileChild.cpp',
|
|
|
|
'RemoteOpenFileParent.cpp',
|
|
|
|
]
|
|
|
|
|
2013-07-01 13:56:28 +00:00
|
|
|
IPDL_SOURCES = [
|
|
|
|
'NeckoChannelParams.ipdlh',
|
2014-03-10 22:04:28 +00:00
|
|
|
'PChannelDiverter.ipdl',
|
2013-07-01 13:56:28 +00:00
|
|
|
'PNecko.ipdl',
|
|
|
|
'PRemoteOpenFile.ipdl',
|
2014-04-03 11:08:34 +00:00
|
|
|
'PRtspChannel.ipdl',
|
2013-09-23 10:12:11 +00:00
|
|
|
'PRtspController.ipdl',
|
2013-07-01 13:56:28 +00:00
|
|
|
]
|
2013-08-22 06:55:59 +00:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-10-02 17:17:55 +00:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'necko'
|
2013-11-28 14:25:39 +00:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base/src',
|
|
|
|
'../protocol/http',
|
|
|
|
'/modules/libjar',
|
|
|
|
]
|