2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = storage
|
|
|
|
XPIDL_MODULE = storage
|
|
|
|
GRE_MODULE = 1
|
|
|
|
|
2010-09-13 09:29:42 -07:00
|
|
|
# NOTE When adding something to this list, you probably need to add it to the
|
|
|
|
# storage.h file too.
|
2007-03-22 10:30:00 -07:00
|
|
|
XPIDLSRCS = \
|
|
|
|
mozIStorageService.idl \
|
|
|
|
mozIStorageConnection.idl \
|
2007-07-07 14:14:51 -07:00
|
|
|
mozIStorageAggregateFunction.idl \
|
2007-03-22 10:30:00 -07:00
|
|
|
mozIStorageFunction.idl \
|
2007-07-07 14:14:51 -07:00
|
|
|
mozIStorageProgressHandler.idl \
|
2007-03-22 10:30:00 -07:00
|
|
|
mozIStorageStatement.idl \
|
|
|
|
mozIStorageValueArray.idl \
|
2008-07-11 12:47:28 -07:00
|
|
|
mozIStorageResultSet.idl \
|
|
|
|
mozIStorageRow.idl \
|
2008-07-11 12:47:33 -07:00
|
|
|
mozIStorageError.idl \
|
2012-05-02 10:01:39 -07:00
|
|
|
mozIStorageStatementParams.idl \
|
|
|
|
mozIStorageStatementRow.idl \
|
2008-07-11 12:47:33 -07:00
|
|
|
mozIStorageStatementCallback.idl \
|
|
|
|
mozIStoragePendingStatement.idl \
|
2009-06-17 12:12:51 -07:00
|
|
|
mozIStorageBindingParamsArray.idl \
|
|
|
|
mozIStorageBindingParams.idl \
|
2009-11-09 09:58:34 -08:00
|
|
|
mozIStorageCompletionCallback.idl \
|
2010-03-24 00:32:40 -07:00
|
|
|
mozIStorageBaseStatement.idl \
|
|
|
|
mozIStorageAsyncStatement.idl \
|
2010-09-03 07:41:55 -07:00
|
|
|
mozIStorageServiceQuotaManagement.idl \
|
2010-10-19 06:46:49 -07:00
|
|
|
mozIStorageVacuumParticipant.idl \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
2010-09-13 09:29:42 -07:00
|
|
|
# SEE ABOVE NOTE!
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-11-08 11:42:29 -08:00
|
|
|
EXPORTS_NAMESPACES = mozilla mozilla/storage
|
2009-05-18 11:15:05 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
EXPORTS = \
|
|
|
|
mozStorageHelper.h \
|
2008-10-30 15:50:00 -07:00
|
|
|
mozStorage.h \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-05-18 11:15:05 -07:00
|
|
|
EXPORTS_mozilla = storage.h
|
2009-05-12 14:08:49 -07:00
|
|
|
|
2010-11-08 11:42:29 -08:00
|
|
|
# NOTE When adding something to this list, you probably need to add it to the
|
|
|
|
# storage.h file too.
|
|
|
|
EXPORTS_mozilla/storage = \
|
|
|
|
StatementCache.h \
|
|
|
|
$(NULL)
|
|
|
|
# SEE ABOVE NOTE!
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|