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

« back to all changes in this revision

Viewing changes to dom/indexedDB/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
 
# This Source Code Form is subject to the terms of the Mozilla Public
2
 
# License, v. 2.0. If a copy of the MPL was not distributed with this
3
 
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
 
 
5
 
DEPTH = @DEPTH@
6
 
topsrcdir = @top_srcdir@
7
 
srcdir = @srcdir@
8
 
VPATH = @srcdir@
9
 
FAIL_ON_WARNINGS := 1
10
 
 
11
 
include $(DEPTH)/config/autoconf.mk
12
 
 
13
 
MODULE = dom
14
 
LIBRARY_NAME = dom_indexeddb_s
15
 
XPIDL_MODULE = dom_indexeddb
16
 
LIBXUL_LIBRARY = 1
17
 
FORCE_STATIC_LIB = 1
18
 
 
19
 
EXPORTS_NAMESPACES = mozilla/dom/indexedDB
20
 
 
21
 
CPPSRCS = \
22
 
  AsyncConnectionHelper.cpp \
23
 
  CheckPermissionsHelper.cpp \
24
 
  CheckQuotaHelper.cpp \
25
 
  DatabaseInfo.cpp \
26
 
  FileInfo.cpp \
27
 
  FileManager.cpp \
28
 
  FileStream.cpp \
29
 
  IDBCursor.cpp \
30
 
  IDBDatabase.cpp \
31
 
  IDBEvents.cpp \
32
 
  IDBFactory.cpp \
33
 
  IDBFileHandle.cpp \
34
 
  IDBIndex.cpp \
35
 
  IDBKeyRange.cpp \
36
 
  IDBObjectStore.cpp \
37
 
  IDBRequest.cpp \
38
 
  IDBTransaction.cpp \
39
 
  IDBWrapperCache.cpp \
40
 
  IndexedDatabaseManager.cpp \
41
 
  Key.cpp \
42
 
  KeyPath.cpp \
43
 
  OpenDatabaseHelper.cpp \
44
 
  TransactionThreadPool.cpp \
45
 
  $(NULL)
46
 
 
47
 
EXPORTS_mozilla/dom/indexedDB = \
48
 
  DatabaseInfo.h \
49
 
  IDBCursor.h \
50
 
  IDBDatabase.h \
51
 
  IDBEvents.h \
52
 
  IDBFactory.h \
53
 
  IDBFileHandle.h \
54
 
  IDBIndex.h \
55
 
  IDBKeyRange.h \
56
 
  IDBObjectStore.h \
57
 
  IDBRequest.h \
58
 
  IDBTransaction.h \
59
 
  IDBWrapperCache.h \
60
 
  IndexedDatabase.h \
61
 
  IndexedDatabaseManager.h \
62
 
  Key.h \
63
 
  KeyPath.h \
64
 
  FileManager.h \
65
 
  FileInfo.h \
66
 
  $(NULL)
67
 
 
68
 
LOCAL_INCLUDES = \
69
 
  -I$(topsrcdir)/db/sqlite3/src \
70
 
  -I$(topsrcdir)/xpcom/build \
71
 
  -I$(topsrcdir)/dom/base \
72
 
  -I$(topsrcdir)/dom/src/storage \
73
 
  -I$(topsrcdir)/content/base/src \
74
 
  -I$(topsrcdir)/content/events/src \
75
 
  $(NULL)
76
 
 
77
 
DEFINES += -D_IMPL_NS_LAYOUT
78
 
 
79
 
# Make sure to quickstub as much as possible here! See
80
 
# js/xpconnect/src/dom_quickstubs.qsconf.
81
 
XPIDLSRCS = \
82
 
  nsIIDBCursor.idl \
83
 
  nsIIDBCursorWithValue.idl \
84
 
  nsIIDBDatabase.idl \
85
 
  nsIIDBFactory.idl \
86
 
  nsIIDBFileHandle.idl \
87
 
  nsIIDBIndex.idl \
88
 
  nsIIDBKeyRange.idl \
89
 
  nsIIDBObjectStore.idl \
90
 
  nsIIDBRequest.idl \
91
 
  nsIIDBTransaction.idl \
92
 
  nsIIDBVersionChangeEvent.idl \
93
 
  nsIIDBOpenDBRequest.idl \
94
 
  nsIIndexedDatabaseManager.idl \
95
 
  nsIStandardFileStream.idl \
96
 
  $(NULL)
97
 
 
98
 
DIRS += ipc
99
 
TEST_DIRS += test
100
 
 
101
 
include $(topsrcdir)/config/config.mk
102
 
include $(topsrcdir)/ipc/chromium/chromium-config.mk
103
 
include $(topsrcdir)/config/rules.mk
104
 
 
105
 
XPIDL_FLAGS += \
106
 
  -I$(topsrcdir)/dom/interfaces/events \
107
 
  $(NULL)