~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to toolkit/components/places/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

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 = places
14
 
 
15
 
XPIDLSRCS = \
16
 
  nsINavHistoryService.idl \
17
 
  $(NULL)
18
 
 
19
 
ifdef MOZ_PLACES
20
 
LIBRARY_NAME  = places
21
 
LIBXUL_LIBRARY = 1
22
 
EXPORT_LIBRARY = 1
23
 
MODULE_NAME = nsPlacesModule
24
 
IS_COMPONENT = 1
25
 
 
26
 
XPIDLSRCS += \
27
 
  mozIAsyncHistory.idl \
28
 
  mozIAsyncFavicons.idl \
29
 
  mozIAsyncLivemarks.idl \
30
 
  mozIPlacesAutoComplete.idl \
31
 
  mozIColorAnalyzer.idl \
32
 
  nsIAnnotationService.idl \
33
 
  nsIBrowserHistory.idl \
34
 
  nsIFaviconService.idl \
35
 
  nsILivemarkService.idl \
36
 
  nsINavBookmarksService.idl \
37
 
  nsIPlacesImportExportService.idl \
38
 
  nsITaggingService.idl  \
39
 
  nsPIPlacesDatabase.idl \
40
 
  nsPIPlacesHistoryListenersNotifier.idl \
41
 
  $(NULL)
42
 
 
43
 
EXPORTS_NAMESPACES = mozilla/places
44
 
 
45
 
EXPORTS_mozilla/places = \
46
 
  History.h \
47
 
  Database.h \
48
 
  $(NULL)
49
 
 
50
 
CPPSRCS = \
51
 
  nsAnnoProtocolHandler.cpp \
52
 
  nsAnnotationService.cpp \
53
 
  nsFaviconService.cpp \
54
 
  nsNavHistory.cpp \
55
 
  nsNavHistoryQuery.cpp \
56
 
  nsNavHistoryResult.cpp \
57
 
  nsNavBookmarks.cpp \
58
 
  nsMaybeWeakPtr.cpp \
59
 
  nsPlacesModule.cpp \
60
 
  SQLFunctions.cpp \
61
 
  Helpers.cpp \
62
 
  History.cpp \
63
 
  nsPlacesExportService.cpp \
64
 
  AsyncFaviconHelpers.cpp \
65
 
  PlaceInfo.cpp \
66
 
  VisitInfo.cpp \
67
 
  Database.cpp \
68
 
  $(NULL)
69
 
 
70
 
LOCAL_INCLUDES += -I$(srcdir)/../build
71
 
 
72
 
ifdef MOZ_ANDROID_HISTORY
73
 
CPPSRCS += nsAndroidHistory.cpp
74
 
LOCAL_INCLUDES += \
75
 
  -I$(topsrcdir)/docshell/base \
76
 
  -I$(topsrcdir)/content/base/src \
77
 
  $(NULL)
78
 
endif
79
 
 
80
 
ifndef MOZ_ANDROID_HISTORY
81
 
EXTRA_COMPONENTS = \
82
 
  toolkitplaces.manifest \
83
 
  nsLivemarkService.js \
84
 
  nsTaggingService.js \
85
 
  nsPlacesExpiration.js \
86
 
  PlacesCategoriesStarter.js \
87
 
  ColorAnalyzer.js \
88
 
  $(NULL)
89
 
 
90
 
ifdef MOZ_XUL
91
 
EXTRA_COMPONENTS += nsPlacesAutoComplete.js nsPlacesAutoComplete.manifest
92
 
endif
93
 
 
94
 
EXTRA_JS_MODULES = \
95
 
  PlacesDBUtils.jsm \
96
 
  BookmarkHTMLUtils.jsm \
97
 
  ColorAnalyzer_worker.js \
98
 
  ColorConversion.js \
99
 
  ClusterLib.js \
100
 
  $(NULL)
101
 
 
102
 
EXTRA_PP_JS_MODULES = \
103
 
  PlacesUtils.jsm \
104
 
  $(NULL)
105
 
 
106
 
TEST_DIRS += tests
107
 
endif
108
 
 
109
 
include $(topsrcdir)/config/config.mk
110
 
include $(topsrcdir)/ipc/chromium/chromium-config.mk
111
 
 
112
 
endif
113
 
 
114
 
include $(topsrcdir)/config/rules.mk