storage/public/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/storage/public/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +XPIDL_SOURCES += [
    1.11 +    'mozIStorageAggregateFunction.idl',
    1.12 +    'mozIStorageAsyncConnection.idl',
    1.13 +    'mozIStorageAsyncStatement.idl',
    1.14 +    'mozIStorageBaseStatement.idl',
    1.15 +    'mozIStorageBindingParams.idl',
    1.16 +    'mozIStorageBindingParamsArray.idl',
    1.17 +    'mozIStorageCompletionCallback.idl',
    1.18 +    'mozIStorageConnection.idl',
    1.19 +    'mozIStorageError.idl',
    1.20 +    'mozIStorageFunction.idl',
    1.21 +    'mozIStoragePendingStatement.idl',
    1.22 +    'mozIStorageProgressHandler.idl',
    1.23 +    'mozIStorageResultSet.idl',
    1.24 +    'mozIStorageRow.idl',
    1.25 +    'mozIStorageService.idl',
    1.26 +    'mozIStorageStatement.idl',
    1.27 +    'mozIStorageStatementCallback.idl',
    1.28 +    'mozIStorageStatementParams.idl',
    1.29 +    'mozIStorageStatementRow.idl',
    1.30 +    'mozIStorageVacuumParticipant.idl',
    1.31 +    'mozIStorageValueArray.idl',
    1.32 +]
    1.33 +
    1.34 +XPIDL_MODULE = 'storage'
    1.35 +
    1.36 +EXPORTS += [
    1.37 +    'mozStorageHelper.h',
    1.38 +]
    1.39 +
    1.40 +EXPORTS.mozilla += [
    1.41 +    'storage.h',
    1.42 +]
    1.43 +
    1.44 +# NOTE When adding something to this list, you probably need to add it to the
    1.45 +#      storage.h file too.
    1.46 +EXPORTS.mozilla.storage += [
    1.47 +    'StatementCache.h',
    1.48 +]
    1.49 +# SEE ABOVE NOTE!
    1.50 +

mercurial