mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f19a207980
--HG-- rename : dom/telephony/Makefile.in => dom/voicemail/Makefile.in rename : dom/telephony/Voicemail.cpp => dom/voicemail/Voicemail.cpp rename : dom/telephony/Voicemail.h => dom/voicemail/Voicemail.h rename : dom/telephony/VoicemailEvent.cpp => dom/voicemail/VoicemailEvent.cpp rename : dom/telephony/VoicemailEvent.h => dom/voicemail/VoicemailEvent.h rename : dom/telephony/nsIDOMVoicemail.idl => dom/voicemail/nsIDOMMozVoicemail.idl rename : dom/telephony/nsIDOMVoicemailEvent.idl => dom/voicemail/nsIDOMMozVoicemailEvent.idl rename : dom/telephony/nsIDOMVoicemailStatus.idl => dom/voicemail/nsIDOMMozVoicemailStatus.idl rename : dom/telephony/nsIDOMNavigatorTelephony.idl => dom/voicemail/nsINavigatorVoicemail.idl rename : dom/telephony/test/marionette/pdu_builder.js => dom/voicemail/test/marionette/pdu_builder.js rename : dom/telephony/test/marionette/test_voicemail_number.js => dom/voicemail/test/marionette/test_voicemail_number.js rename : dom/telephony/test/marionette/test_voicemail_statuschanged.js => dom/voicemail/test/marionette/test_voicemail_statuschanged.js rename : dom/telephony/test/marionette/test_voicemail_statuschanged.py => dom/voicemail/test/marionette/test_voicemail_statuschanged.py
40 lines
918 B
Makefile
40 lines
918 B
Makefile
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dom
|
|
LIBRARY_NAME = domtelephony_s
|
|
XPIDL_MODULE = dom_telephony
|
|
LIBXUL_LIBRARY = 1
|
|
FORCE_STATIC_LIB = 1
|
|
FAIL_ON_WARNINGS := 1
|
|
|
|
include $(topsrcdir)/dom/dom-config.mk
|
|
|
|
CPPSRCS = \
|
|
Telephony.cpp \
|
|
TelephonyCall.cpp \
|
|
$(NULL)
|
|
|
|
XPIDLSRCS = \
|
|
nsIDOMNavigatorTelephony.idl \
|
|
nsIDOMTelephony.idl \
|
|
nsIDOMTelephonyCall.idl \
|
|
nsIDOMCallEvent.idl \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
XPIDL_FLAGS += \
|
|
-I$(topsrcdir)/dom/base \
|
|
-I$(topsrcdir)/dom/interfaces/base \
|
|
-I$(topsrcdir)/dom/interfaces/events \
|
|
$(NULL)
|