2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:05:31 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# 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/.
|
|
|
|
|
2017-02-23 16:01:50 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Storage")
|
|
|
|
|
2015-05-19 20:47:33 +03:00
|
|
|
DIRS += ['build']
|
2013-02-26 01:05:31 +04:00
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += ['test']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2015-05-19 20:47:29 +03:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'mozIStorageAggregateFunction.idl',
|
|
|
|
'mozIStorageAsyncConnection.idl',
|
|
|
|
'mozIStorageAsyncStatement.idl',
|
|
|
|
'mozIStorageBaseStatement.idl',
|
|
|
|
'mozIStorageBindingParams.idl',
|
|
|
|
'mozIStorageBindingParamsArray.idl',
|
|
|
|
'mozIStorageCompletionCallback.idl',
|
|
|
|
'mozIStorageConnection.idl',
|
|
|
|
'mozIStorageError.idl',
|
|
|
|
'mozIStorageFunction.idl',
|
|
|
|
'mozIStoragePendingStatement.idl',
|
|
|
|
'mozIStorageProgressHandler.idl',
|
|
|
|
'mozIStorageResultSet.idl',
|
|
|
|
'mozIStorageRow.idl',
|
|
|
|
'mozIStorageService.idl',
|
|
|
|
'mozIStorageStatement.idl',
|
|
|
|
'mozIStorageStatementCallback.idl',
|
|
|
|
'mozIStorageVacuumParticipant.idl',
|
|
|
|
'mozIStorageValueArray.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'storage'
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'mozStorageHelper.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'storage.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
# NOTE When adding something to this list, you probably need to add it to the
|
|
|
|
# storage.h file too.
|
|
|
|
EXPORTS.mozilla.storage += [
|
2017-08-24 11:52:52 +03:00
|
|
|
'mozStorageAsyncStatementParams.h',
|
|
|
|
'mozStorageStatementParams.h',
|
2017-08-22 10:25:37 +03:00
|
|
|
'mozStorageStatementRow.h',
|
2015-05-19 20:47:29 +03:00
|
|
|
'StatementCache.h',
|
2015-05-19 20:47:33 +03:00
|
|
|
'Variant.h',
|
|
|
|
'Variant_inl.h',
|
2015-05-19 20:47:29 +03:00
|
|
|
]
|
|
|
|
# SEE ABOVE NOTE!
|
2015-05-19 20:47:33 +03:00
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'FileSystemModule.cpp',
|
|
|
|
'mozStorageArgValueArray.cpp',
|
|
|
|
'mozStorageAsyncStatement.cpp',
|
|
|
|
'mozStorageAsyncStatementExecution.cpp',
|
|
|
|
'mozStorageAsyncStatementJSHelper.cpp',
|
|
|
|
'mozStorageAsyncStatementParams.cpp',
|
|
|
|
'mozStorageBindingParamsArray.cpp',
|
|
|
|
'mozStorageError.cpp',
|
|
|
|
'mozStoragePrivateHelpers.cpp',
|
|
|
|
'mozStorageResultSet.cpp',
|
|
|
|
'mozStorageRow.cpp',
|
|
|
|
'mozStorageService.cpp',
|
|
|
|
'mozStorageSQLFunctions.cpp',
|
|
|
|
'mozStorageStatement.cpp',
|
|
|
|
'mozStorageStatementJSHelper.cpp',
|
|
|
|
'mozStorageStatementParams.cpp',
|
|
|
|
'mozStorageStatementRow.cpp',
|
|
|
|
'SQLCollations.cpp',
|
|
|
|
'StorageBaseStatementInternal.cpp',
|
|
|
|
'TelemetryVFS.cpp',
|
|
|
|
'VacuumManager.cpp',
|
2019-02-07 19:14:04 +03:00
|
|
|
'Variant.cpp',
|
2015-05-19 20:47:33 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
# These files need to be built separately because they #include variantToSQLiteT_impl.h.
|
|
|
|
SOURCES += [
|
|
|
|
'mozStorageBindingParams.cpp',
|
|
|
|
'mozStorageConnection.cpp',
|
|
|
|
]
|
|
|
|
|
2015-06-30 15:59:27 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2015-05-19 20:47:33 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
2018-11-30 02:02:10 +03:00
|
|
|
# Thunderbird needs the 2-argument version of fts3_tokenizer()
|
|
|
|
if CONFIG['MOZ_THUNDERBIRD'] or CONFIG['MOZ_SUITE']:
|
|
|
|
DEFINES['MOZ_SQLITE_FTS3_TOKENIZER'] = 1
|
|
|
|
|
2015-05-19 20:47:33 +03:00
|
|
|
# This is the default value. If we ever change it when compiling sqlite, we
|
|
|
|
# will need to change it here as well.
|
|
|
|
DEFINES['SQLITE_MAX_LIKE_PATTERN_LENGTH'] = 50000
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
2019-05-29 13:16:29 +03:00
|
|
|
'/third_party/sqlite3/src',
|
2015-05-19 20:47:33 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
CXXFLAGS += CONFIG['SQLITE_CFLAGS']
|