2014-01-27 03:36:28 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'CertVerifier.cpp',
|
2014-01-21 06:10:33 +00:00
|
|
|
'NSSCertDBTrustDomain.cpp',
|
2014-03-12 20:08:48 +00:00
|
|
|
'OCSPCache.cpp',
|
2014-01-27 03:36:28 +00:00
|
|
|
]
|
|
|
|
|
2014-02-24 06:15:53 +00:00
|
|
|
if not CONFIG['NSS_NO_EV_CERTS']:
|
2014-01-27 03:36:28 +00:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ExtendedValidation.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../insanity/include',
|
|
|
|
]
|
|
|
|
|
2014-03-10 21:04:31 +00:00
|
|
|
DIRS += [
|
2014-03-12 20:08:18 +00:00
|
|
|
'../insanity',
|
2014-03-10 21:04:31 +00:00
|
|
|
]
|
|
|
|
|
2014-02-06 06:11:24 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-03-10 21:04:31 +00:00
|
|
|
LIBRARY_NAME = 'certverifier'
|
|
|
|
|
2014-01-27 03:36:28 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|