michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'mozIStorageAggregateFunction.idl', michael@0: 'mozIStorageAsyncConnection.idl', michael@0: 'mozIStorageAsyncStatement.idl', michael@0: 'mozIStorageBaseStatement.idl', michael@0: 'mozIStorageBindingParams.idl', michael@0: 'mozIStorageBindingParamsArray.idl', michael@0: 'mozIStorageCompletionCallback.idl', michael@0: 'mozIStorageConnection.idl', michael@0: 'mozIStorageError.idl', michael@0: 'mozIStorageFunction.idl', michael@0: 'mozIStoragePendingStatement.idl', michael@0: 'mozIStorageProgressHandler.idl', michael@0: 'mozIStorageResultSet.idl', michael@0: 'mozIStorageRow.idl', michael@0: 'mozIStorageService.idl', michael@0: 'mozIStorageStatement.idl', michael@0: 'mozIStorageStatementCallback.idl', michael@0: 'mozIStorageStatementParams.idl', michael@0: 'mozIStorageStatementRow.idl', michael@0: 'mozIStorageVacuumParticipant.idl', michael@0: 'mozIStorageValueArray.idl', michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'storage' michael@0: michael@0: EXPORTS += [ michael@0: 'mozStorageHelper.h', michael@0: ] michael@0: michael@0: EXPORTS.mozilla += [ michael@0: 'storage.h', michael@0: ] michael@0: michael@0: # NOTE When adding something to this list, you probably need to add it to the michael@0: # storage.h file too. michael@0: EXPORTS.mozilla.storage += [ michael@0: 'StatementCache.h', michael@0: ] michael@0: # SEE ABOVE NOTE! michael@0: