2007-03-22 10:30:00 -07:00
|
|
|
#
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is Oracle Corporation code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Oracle Corporation
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2004
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
|
2007-07-07 14:14:51 -07:00
|
|
|
# Lev Serebryakov <lev@serebryakov.spb.ru>
|
2007-03-22 10:30:00 -07:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
|
|
|
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 \
|
|
|
|
mozIStorageStatementWrapper.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 \
|
|
|
|
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
|