mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
4db9ccb1af
MozReview-Commit-ID: JnQzXG581DW Differential Revision: https://phabricator.services.mozilla.com/D6328 --HG-- rename : third_party/rust/crossbeam-utils/.cargo-checksum.json => third_party/rust/crossbeam-utils-0.3.2/.cargo-checksum.json rename : third_party/rust/crossbeam-utils/CHANGELOG.md => third_party/rust/crossbeam-utils-0.3.2/CHANGELOG.md rename : third_party/rust/crossbeam-utils/Cargo.toml => third_party/rust/crossbeam-utils-0.3.2/Cargo.toml rename : third_party/rust/crossbeam-utils/LICENSE-MIT => third_party/rust/crossbeam-utils-0.3.2/LICENSE-MIT rename : third_party/rust/crossbeam-utils/README.md => third_party/rust/crossbeam-utils-0.3.2/README.md rename : third_party/rust/crossbeam-utils/src/cache_padded.rs => third_party/rust/crossbeam-utils-0.3.2/src/cache_padded.rs rename : third_party/rust/crossbeam-utils/src/consume.rs => third_party/rust/crossbeam-utils-0.3.2/src/consume.rs rename : third_party/rust/crossbeam-utils/src/lib.rs => third_party/rust/crossbeam-utils-0.3.2/src/lib.rs rename : third_party/rust/crossbeam-utils/src/scoped.rs => third_party/rust/crossbeam-utils-0.3.2/src/scoped.rs rename : third_party/rust/crossbeam-utils/src/consume.rs => third_party/rust/crossbeam-utils/src/atomic/consume.rs rename : third_party/rust/crossbeam-utils/Cargo.toml => third_party/rust/threadbound/Cargo.toml rename : third_party/rust/crossbeam-utils/LICENSE-MIT => third_party/rust/threadbound/LICENSE-MIT rename : third_party/rust/uuid/.cargo-checksum.json => third_party/rust/uuid-0.6.5/.cargo-checksum.json rename : third_party/rust/uuid/CODE_OF_CONDUCT.md => third_party/rust/uuid-0.6.5/CODE_OF_CONDUCT.md rename : third_party/rust/uuid/Cargo.toml => third_party/rust/uuid-0.6.5/Cargo.toml rename : third_party/rust/crossbeam-utils/LICENSE-MIT => third_party/rust/uuid-0.6.5/LICENSE-MIT rename : third_party/rust/uuid/README.md => third_party/rust/uuid-0.6.5/README.md rename : third_party/rust/uuid/benches/parse_str.rs => third_party/rust/uuid-0.6.5/benches/parse_str.rs rename : third_party/rust/uuid/src/adapter.rs => third_party/rust/uuid-0.6.5/src/adapter.rs rename : third_party/rust/uuid/src/core_support.rs => third_party/rust/uuid-0.6.5/src/core_support.rs rename : third_party/rust/uuid/src/lib.rs => third_party/rust/uuid-0.6.5/src/lib.rs rename : third_party/rust/uuid/src/prelude.rs => third_party/rust/uuid-0.6.5/src/prelude.rs rename : third_party/rust/uuid/src/serde_support.rs => third_party/rust/uuid-0.6.5/src/serde_support.rs rename : third_party/rust/uuid/src/slog_support.rs => third_party/rust/uuid-0.6.5/src/slog_support.rs rename : third_party/rust/uuid/src/std_support.rs => third_party/rust/uuid-0.6.5/src/std_support.rs rename : third_party/rust/uuid/src/test_util.rs => third_party/rust/uuid-0.6.5/src/test_util.rs rename : third_party/rust/uuid/src/u128_support.rs => third_party/rust/uuid-0.6.5/src/u128_support.rs rename : third_party/rust/uuid/benches/parse_str.rs => third_party/rust/uuid/benches/invalid_parse_str.rs rename : third_party/rust/uuid/src/std_support.rs => third_party/rust/uuid/src/parser/std_support.rs extra : moz-landing-system : lando
113 lines
3.2 KiB
Python
113 lines
3.2 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Toolkit", "Storage")
|
|
|
|
DIRS += ['build']
|
|
|
|
TEST_DIRS += ['test']
|
|
|
|
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 += [
|
|
'mozStorageAsyncStatementParams.h',
|
|
'mozStorageStatementParams.h',
|
|
'mozStorageStatementRow.h',
|
|
'StatementCache.h',
|
|
'Variant.h',
|
|
'Variant_inl.h',
|
|
]
|
|
# SEE ABOVE NOTE!
|
|
|
|
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',
|
|
'Variant.cpp',
|
|
]
|
|
|
|
# These files need to be built separately because they #include variantToSQLiteT_impl.h.
|
|
SOURCES += [
|
|
'mozStorageBindingParams.cpp',
|
|
'mozStorageConnection.cpp',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
# Thunderbird needs the 2-argument version of fts3_tokenizer()
|
|
if CONFIG['MOZ_THUNDERBIRD'] or CONFIG['MOZ_SUITE']:
|
|
DEFINES['MOZ_SQLITE_FTS3_TOKENIZER'] = 1
|
|
|
|
# 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
|
|
|
|
# See Sqlite moz.build for reasoning about TEMP_STORE.
|
|
# For system sqlite we cannot use the compile time option, so we use a pragma.
|
|
if CONFIG['MOZ_SYSTEM_SQLITE'] and (CONFIG['OS_TARGET'] == 'Android'
|
|
or CONFIG['HAVE_64BIT_BUILD']):
|
|
DEFINES['MOZ_MEMORY_TEMP_STORE_PRAGMA'] = True
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/db/sqlite3/src',
|
|
'/dom/base',
|
|
]
|
|
|
|
CXXFLAGS += CONFIG['SQLITE_CFLAGS']
|