mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
57 lines
1.2 KiB
Python
57 lines
1.2 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 += [
|
|
'nsIVoicemailService.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'dom_voicemail'
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'Voicemail.h',
|
|
'VoicemailStatus.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom.voicemail += [
|
|
'ipc/VoicemailIPCService.h',
|
|
'ipc/VoicemailParent.h',
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'ipc/PVoicemail.ipdl',
|
|
]
|
|
|
|
SOURCES += [
|
|
'ipc/VoicemailIPCService.cpp',
|
|
'ipc/VoicemailParent.cpp',
|
|
'Voicemail.cpp',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'VoicemailStatus.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']:
|
|
XPIDL_SOURCES += [
|
|
'gonk/nsIGonkVoicemailService.idl',
|
|
]
|
|
if not CONFIG['DISABLE_MOZ_RIL_GEOLOC']:
|
|
EXTRA_COMPONENTS += [
|
|
'gonk/VoicemailService.js',
|
|
'gonk/VoicemailService.manifest',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += ['-Wshadow']
|