mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
704e2319bc
--HG-- extra : rebase_source : ffffdc4549da1b25ea263b623c05ae1afb3d46a0
107 lines
2.6 KiB
Makefile
107 lines
2.6 KiB
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
|
|
|
|
LIBRARY_NAME = gkconevents_s
|
|
LIBXUL_LIBRARY = 1
|
|
ifndef _MSC_VER
|
|
FAIL_ON_WARNINGS = 1
|
|
endif # !_MSC_VER
|
|
|
|
EXPORTS = \
|
|
nsEventStateManager.h \
|
|
nsEventListenerManager.h \
|
|
nsDOMEventTargetHelper.h \
|
|
nsDOMEvent.h \
|
|
nsDOMGamepad.h \
|
|
nsDOMTouchEvent.h \
|
|
nsDOMUIEvent.h \
|
|
$(NULL)
|
|
|
|
CPPSRCS = \
|
|
nsEventListenerManager.cpp \
|
|
nsEventStateManager.cpp \
|
|
nsDOMEvent.cpp \
|
|
nsDOMDataContainerEvent.cpp \
|
|
nsDOMUIEvent.cpp \
|
|
nsDOMKeyboardEvent.cpp \
|
|
nsDOMTextEvent.cpp \
|
|
nsDOMMouseEvent.cpp \
|
|
nsDOMMouseScrollEvent.cpp \
|
|
nsDOMDragEvent.cpp \
|
|
nsDOMMutationEvent.cpp \
|
|
nsDOMDeviceMotionEvent.cpp \
|
|
nsDOMBeforeUnloadEvent.cpp \
|
|
nsDOMXULCommandEvent.cpp \
|
|
nsDOMCommandEvent.cpp \
|
|
nsDOMMessageEvent.cpp \
|
|
nsPaintRequest.cpp \
|
|
nsPrivateTextRange.cpp \
|
|
nsAsyncDOMEvent.cpp \
|
|
nsEventDispatcher.cpp \
|
|
nsIMEStateManager.cpp \
|
|
nsContentEventHandler.cpp \
|
|
nsEventListenerService.cpp \
|
|
nsDOMDataTransfer.cpp \
|
|
nsDOMNotifyPaintEvent.cpp \
|
|
nsDOMNotifyAudioAvailableEvent.cpp \
|
|
nsDOMSimpleGestureEvent.cpp \
|
|
nsDOMEventTargetHelper.cpp \
|
|
nsDOMScrollAreaEvent.cpp \
|
|
nsDOMTransitionEvent.cpp \
|
|
nsDOMAnimationEvent.cpp \
|
|
nsDOMTouchEvent.cpp \
|
|
nsDOMCompositionEvent.cpp \
|
|
nsDOMClipboardEvent.cpp \
|
|
DOMWheelEvent.cpp \
|
|
TextComposition.cpp \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_GAMEPAD
|
|
CPPSRCS += \
|
|
nsDOMGamepad.cpp \
|
|
$(NULL)
|
|
endif
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
LOCAL_INCLUDES += \
|
|
-I$(srcdir)/../../base/src \
|
|
-I$(srcdir)/../../html/content/src \
|
|
-I$(srcdir)/../../xul/content/src \
|
|
-I$(srcdir)/../../xml/content/src \
|
|
-I$(srcdir)/../../../dom/base \
|
|
-I$(srcdir)/../../../dom/settings \
|
|
-I$(srcdir)/../../../dom/src/storage \
|
|
-I$(srcdir)/../../../layout/generic \
|
|
-I$(srcdir)/../../../layout/xul/base/src \
|
|
-I$(srcdir)/../../../layout/xul/tree/ \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_B2G_RIL
|
|
LOCAL_INCLUDES += \
|
|
-I$(srcdir)/../../../dom/wifi \
|
|
$(NULL)
|
|
endif
|
|
|
|
DEFINES += -D_IMPL_NS_LAYOUT
|
|
|
|
ifdef MOZ_JSDEBUGGER
|
|
DEFINES += -DMOZ_JSDEBUGGER
|
|
endif
|
|
|
|
|