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

« back to all changes in this revision

Viewing changes to docshell/base/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         = docshell
 
14
LIBRARY_NAME   = basedocshell_s
 
15
GRE_MODULE     = 1
 
16
LIBXUL_LIBRARY = 1
 
17
 
 
18
ifdef MOZ_TOOLKIT_SEARCH
 
19
DEFINES += -DMOZ_TOOLKIT_SEARCH
 
20
endif
 
21
 
 
22
SDK_XPIDLSRCS = \
 
23
  nsIClipboardCommands.idl \
 
24
  $(NULL)
 
25
 
 
26
XPIDLSRCS = \
 
27
  nsCDefaultURIFixup.idl \
 
28
  nsIDocShell.idl \
 
29
  nsIDocShellLoadInfo.idl \
 
30
  nsIDocShellTreeItem.idl \
 
31
  nsIDocShellTreeNode.idl \
 
32
  nsIDocShellTreeOwner.idl \
 
33
  nsIDocShellHistory.idl \
 
34
  nsIGlobalHistory2.idl \
 
35
  nsIMarkupDocumentViewer.idl \
 
36
  nsIScrollable.idl \
 
37
  nsITextScroll.idl \
 
38
  nsIDocCharset.idl \
 
39
  nsIWebNavigation.idl \
 
40
  nsIWebNavigationInfo.idl \
 
41
  nsIContentViewer.idl \
 
42
  nsIContentViewerEdit.idl \
 
43
  nsIContentViewerFile.idl \
 
44
  nsIURIFixup.idl \
 
45
  nsIEditorDocShell.idl \
 
46
  nsIWebPageDescriptor.idl \
 
47
  nsIDownloadHistory.idl \
 
48
  nsILoadContext.idl \
 
49
  nsIRefreshURI.idl \
 
50
  nsIContentViewerContainer.idl \
 
51
  nsIDocumentLoaderFactory.idl \
 
52
  nsIPrivacyTransitionObserver.idl \
 
53
  $(NULL)
 
54
 
 
55
EXPORTS = \
 
56
  nsDocShellLoadTypes.h \
 
57
  nsILinkHandler.h \
 
58
  nsIWebShellServices.h \
 
59
  SerializedLoadContext.h \
 
60
  $(NULL)
 
61
 
 
62
EXPORTS_NAMESPACES = mozilla
 
63
 
 
64
EXPORTS_mozilla = \
 
65
  IHistory.h \
 
66
  LoadContext.h \
 
67
  $(NULL)
 
68
 
 
69
CPPSRCS = \
 
70
  nsDocShell.cpp \
 
71
  nsDocShellLoadInfo.cpp \
 
72
  nsDocShellEditorData.cpp \
 
73
  nsDocShellTransferableHooks.cpp \
 
74
  nsDocShellEnumerator.cpp \
 
75
  nsDSURIContentListener.cpp \
 
76
  nsDefaultURIFixup.cpp \
 
77
  nsWebNavigationInfo.cpp \
 
78
  nsAboutRedirector.cpp \
 
79
  nsDownloadHistory.cpp \
 
80
  SerializedLoadContext.cpp \
 
81
  LoadContext.cpp \
 
82
  $(NULL)
 
83
 
 
84
# we don't want the shared lib, but we want to force the creation of a
 
85
# static lib.
 
86
FORCE_STATIC_LIB = 1
 
87
 
 
88
include $(topsrcdir)/config/config.mk
 
89
include $(topsrcdir)/ipc/chromium/chromium-config.mk
 
90
include $(topsrcdir)/config/rules.mk
 
91
 
 
92
LOCAL_INCLUDES += \
 
93
  -I$(srcdir)/../shistory/src \
 
94
  -I$(topsrcdir)/dom/base \
 
95
  -I$(topsrcdir)/layout/base \
 
96
  -I$(topsrcdir)/xpcom/ds \
 
97
  -I$(topsrcdir)/layout/generic \
 
98
  -I$(topsrcdir)/layout/xul/base/src \
 
99
  -I$(topsrcdir)/content/base/src \
 
100
  $(NULL)