mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-07 05:15:09 +00:00
9f77404d3f
In the future, bug 1377940 will make the sqlite-backed databases the default, but until we're sure this will stick we want to be able to control this with a Firefox-only change. The use of a preference to configure which format to use will hopefully allow us to restore the old behavior quickly and relatively safely if necessary. Note that doing this should be done with care; any changes made in the sqlite databases after upgrade migration will not be reflected if we need to go back to the old database format. Thus, user data (imported CAs, client certificates, and keys) can be lost. MozReview-Commit-ID: tkovdiCU9v --HG-- extra : rebase_source : e74358bd65afb5844fa8fc5b729eba2bbc5bb2db
140 lines
4.8 KiB
Python
140 lines
4.8 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 = ("Core", "Security: PSM")
|
|
|
|
EXPORTS += [
|
|
'BRNameMatchingPolicy.h',
|
|
'BTInclusionProof.h',
|
|
'BTVerifier.h',
|
|
'Buffer.h',
|
|
'CertVerifier.h',
|
|
'CTLog.h',
|
|
'CTPolicyEnforcer.h',
|
|
'CTVerifyResult.h',
|
|
'OCSPCache.h',
|
|
'SignedCertificateTimestamp.h',
|
|
'SignedTreeHead.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'BRNameMatchingPolicy.cpp',
|
|
'BTVerifier.cpp',
|
|
'Buffer.cpp',
|
|
'CertVerifier.cpp',
|
|
'CTDiversityPolicy.cpp',
|
|
'CTLogVerifier.cpp',
|
|
'CTObjectsExtractor.cpp',
|
|
'CTPolicyEnforcer.cpp',
|
|
'CTSerialization.cpp',
|
|
'CTVerifyResult.cpp',
|
|
'MultiLogCTVerifier.cpp',
|
|
'NSSCertDBTrustDomain.cpp',
|
|
'OCSPCache.cpp',
|
|
'OCSPRequestor.cpp',
|
|
'OCSPVerificationTrustDomain.cpp',
|
|
'SignedCertificateTimestamp.cpp',
|
|
]
|
|
|
|
if not CONFIG['NSS_NO_EV_CERTS']:
|
|
UNIFIED_SOURCES += [
|
|
'ExtendedValidation.cpp',
|
|
]
|
|
|
|
for var in ('DLL_PREFIX', 'DLL_SUFFIX'):
|
|
DEFINES[var] = '"%s"' % CONFIG[var]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/security/manager/ssl',
|
|
'/security/pkix/include',
|
|
'/security/pkix/lib',
|
|
]
|
|
|
|
DIRS += [
|
|
'../pkix',
|
|
]
|
|
|
|
TEST_DIRS += [
|
|
'tests/gtest',
|
|
]
|
|
|
|
CXXFLAGS += ['-Wall']
|
|
if CONFIG['_MSC_VER']:
|
|
# -Wall with Visual C++ enables too many problematic warnings
|
|
CXXFLAGS += [
|
|
'-wd4355', # 'this' used in base member initializer list
|
|
'-wd4464', # relative include path contains '..'
|
|
'-wd4480', # nonstandard extension used: specifying underlying type for
|
|
# enum 'enum'
|
|
'-wd4481', # nonstandard extension used: override specifier 'keyword'
|
|
'-wd4510', # default constructor could not be generated
|
|
'-wd4512', # assignment operator could not be generated
|
|
'-wd4514', # 'function': unreferenced inline function has been removed
|
|
'-wd4610', # struct 'symbol' can never be instantiated - user defined
|
|
# constructor required
|
|
'-wd4619', # pragma warning: there is no warning 'warning'
|
|
'-wd4623', # default constructor could not be generated because a base
|
|
# class default constructor is inaccessible or deleted
|
|
'-wd4625', # copy constructor could not be generated because a base
|
|
# class copy constructor is inaccessible or deleted
|
|
'-wd4626', # assignment operator could not be generated because a base
|
|
# class assignment operator is inaccessible or deleted
|
|
'-wd4628', # digraphs not supported with -Ze (nsThreadUtils.h includes
|
|
# what would be the digraph "<:" in the expression
|
|
# "mozilla::EnableIf<::detail::...". Since we don't want it
|
|
# interpreted as a digraph anyway, we can disable the
|
|
# warning.)
|
|
'-wd4640', # construction of local static object is not thread-safe
|
|
'-wd4710', # 'function': function not inlined
|
|
'-wd4711', # function 'function' selected for inline expansion
|
|
'-wd4820', # 'bytes' bytes padding added after construct 'member_name'
|
|
]
|
|
|
|
# MSVC 2010's headers trigger these
|
|
CXXFLAGS += [
|
|
'-wd4548', # expression before comma has no effect; ...
|
|
'-wd4668', # 'symbol' is not defined as a preprocessor macro...
|
|
'-wd4987', # nonstandard extension used
|
|
]
|
|
|
|
# MSVC 2015 triggers these
|
|
CXXFLAGS += [
|
|
'-wd4456', # declaration of 'rv' hides previous local declaration
|
|
'-wd4458', # declaration of 'input' hides class member
|
|
]
|
|
|
|
# The following warnings are disabled because MSVC 2017 headers aren't
|
|
# warning free at the -Wall level.
|
|
CXXFLAGS += [
|
|
'-wd4061', # enumerator 'identifier' in switch of enum 'enumeration' is
|
|
# not explicitly handled by a case label
|
|
'-wd4365', # 'action' : conversion from 'type_1' to 'type_2',
|
|
# signed/unsigned mismatch
|
|
'-wd4774', # '<function>' : format string expected in argument
|
|
# <position> is not a string literal
|
|
]
|
|
|
|
# Gecko headers aren't warning-free enough for us to enable these warnings
|
|
CXXFLAGS += [
|
|
'-wd4100', # 'symbol' : unreferenced formal parameter
|
|
'-wd4127', # conditional expression is constant
|
|
'-wd4946', # reinterpret_cast used between related types
|
|
]
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += [
|
|
'-Wextra',
|
|
'-Wunreachable-code',
|
|
]
|
|
|
|
# Gecko headers aren't warning-free enough for us to enable these warnings.
|
|
CXXFLAGS += [
|
|
'-Wno-unused-parameter',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|