~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to content/events/src/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This Source Code Form is subject to the terms of the Mozilla Public
 
3
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
5
 
 
6
DEPTH           = @DEPTH@
 
7
topsrcdir       = @top_srcdir@
 
8
srcdir          = @srcdir@
 
9
VPATH           = @srcdir@
 
10
 
 
11
include $(DEPTH)/config/autoconf.mk
 
12
 
 
13
MODULE          = content
 
14
LIBRARY_NAME    = gkconevents_s
 
15
LIBXUL_LIBRARY  = 1
 
16
FAIL_ON_WARNINGS = 1
 
17
 
 
18
EXPORTS         = \
 
19
                nsEventStateManager.h \
 
20
                nsEventListenerManager.h \
 
21
                nsDOMEventTargetHelper.h \
 
22
                nsDOMEvent.h \
 
23
                nsDOMTouchEvent.h \
 
24
                nsDOMUIEvent.h \
 
25
                $(NULL)
 
26
 
 
27
CPPSRCS         = \
 
28
                nsEventListenerManager.cpp \
 
29
                nsEventStateManager.cpp \
 
30
                nsDOMEvent.cpp \
 
31
                nsDOMDataContainerEvent.cpp \
 
32
                nsDOMUIEvent.cpp \
 
33
                nsDOMKeyboardEvent.cpp \
 
34
                nsDOMTextEvent.cpp \
 
35
                nsDOMMouseEvent.cpp \
 
36
                nsDOMMouseScrollEvent.cpp \
 
37
                nsDOMDragEvent.cpp \
 
38
                nsDOMMutationEvent.cpp \
 
39
                nsDOMDeviceMotionEvent.cpp \
 
40
                nsDOMBeforeUnloadEvent.cpp \
 
41
                nsDOMXULCommandEvent.cpp \
 
42
                nsDOMCommandEvent.cpp \
 
43
                nsDOMMessageEvent.cpp \
 
44
                nsPaintRequest.cpp \
 
45
                nsPrivateTextRange.cpp \
 
46
                nsXMLEventsManager.cpp \
 
47
                nsXMLEventsElement.cpp \
 
48
                nsAsyncDOMEvent.cpp \
 
49
                nsEventDispatcher.cpp \
 
50
                nsIMEStateManager.cpp \
 
51
                nsContentEventHandler.cpp \
 
52
                nsEventListenerService.cpp \
 
53
                nsDOMProgressEvent.cpp \
 
54
                nsDOMDataTransfer.cpp \
 
55
                nsDOMNotifyPaintEvent.cpp \
 
56
                nsDOMNotifyAudioAvailableEvent.cpp \
 
57
                nsDOMSimpleGestureEvent.cpp \
 
58
                nsDOMMozTouchEvent.cpp \
 
59
                nsDOMEventTargetHelper.cpp \
 
60
                nsDOMScrollAreaEvent.cpp \
 
61
                nsDOMTransitionEvent.cpp \
 
62
                nsDOMAnimationEvent.cpp \
 
63
                nsDOMTouchEvent.cpp \
 
64
                nsDOMCompositionEvent.cpp \
 
65
                DOMWheelEvent.cpp \
 
66
                $(NULL)
 
67
 
 
68
ifdef MOZ_B2G_RIL
 
69
CPPSRCS += \
 
70
    nsDOMWifiEvent.cpp \
 
71
    $(NULL)
 
72
endif
 
73
 
 
74
# we don't want the shared lib, but we want to force the creation of a static lib.
 
75
FORCE_STATIC_LIB = 1
 
76
 
 
77
include $(topsrcdir)/config/config.mk
 
78
include $(topsrcdir)/ipc/chromium/chromium-config.mk
 
79
include $(topsrcdir)/config/rules.mk
 
80
 
 
81
LOCAL_INCLUDES  += \
 
82
             -I$(srcdir)/../../base/src \
 
83
             -I$(srcdir)/../../html/content/src \
 
84
             -I$(srcdir)/../../xul/content/src \
 
85
             -I$(srcdir)/../../xml/content/src \
 
86
             -I$(srcdir)/../../../dom/base \
 
87
             -I$(srcdir)/../../../dom/settings \
 
88
             -I$(srcdir)/../../../dom/src/storage \
 
89
             -I$(srcdir)/../../../layout/generic \
 
90
             -I$(srcdir)/../../../layout/xul/base/src \
 
91
             -I$(srcdir)/../../../layout/xul/base/src/tree/src \
 
92
             $(NULL)
 
93
 
 
94
ifdef MOZ_B2G_RIL
 
95
LOCAL_INCLUDES += \
 
96
              -I$(srcdir)/../../../dom/wifi \
 
97
              $(NULL)
 
98
endif
 
99
 
 
100
DEFINES += -D_IMPL_NS_LAYOUT
 
101
 
 
102
ifdef MOZ_JSDEBUGGER
 
103
DEFINES += -DMOZ_JSDEBUGGER
 
104
endif
 
105
 
 
106