mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
546cc64d56
--HG-- rename : dom/telephony/gonk/TelephonyProvider.js => dom/telephony/gonk/TelephonyService.js rename : dom/telephony/gonk/TelephonyProvider.manifest => dom/telephony/gonk/TelephonyService.manifest rename : dom/telephony/ipc/TelephonyIPCProvider.cpp => dom/telephony/ipc/TelephonyIPCService.cpp rename : dom/telephony/ipc/TelephonyIPCProvider.h => dom/telephony/ipc/TelephonyIPCService.h rename : dom/telephony/nsIGonkTelephonyProvider.idl => dom/telephony/nsIGonkTelephonyService.idl rename : dom/telephony/nsITelephonyProvider.idl => dom/telephony/nsITelephonyService.idl
59 lines
1.4 KiB
Python
59 lines
1.4 KiB
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsITelephonyService.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'dom_telephony'
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'CallEvent.h',
|
|
'CallsList.h',
|
|
'Telephony.h',
|
|
'TelephonyCall.h',
|
|
'TelephonyCallGroup.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom.telephony += [
|
|
'ipc/TelephonyChild.h',
|
|
'ipc/TelephonyParent.h',
|
|
'TelephonyCommon.h',
|
|
'TelephonyFactory.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'CallEvent.cpp',
|
|
'CallsList.cpp',
|
|
'ipc/TelephonyChild.cpp',
|
|
'ipc/TelephonyIPCService.cpp',
|
|
'ipc/TelephonyParent.cpp',
|
|
'Telephony.cpp',
|
|
'TelephonyCall.cpp',
|
|
'TelephonyCallGroup.cpp',
|
|
'TelephonyFactory.cpp',
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'ipc/PTelephony.ipdl',
|
|
'ipc/PTelephonyRequest.ipdl',
|
|
'ipc/TelephonyTypes.ipdlh'
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']:
|
|
XPIDL_SOURCES += [
|
|
'nsIGonkTelephonyService.idl',
|
|
]
|
|
EXTRA_COMPONENTS += [
|
|
'gonk/TelephonyService.js',
|
|
'gonk/TelephonyService.manifest',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|