bug 982403 - separate the compilation of certverifier and insanity::pkix r=cviecco r=briansmith

--HG--
rename : security/certverifier/moz.build => security/insanity/moz.build
This commit is contained in:
David Keeler 2014-03-12 13:08:18 -07:00
parent 4141d7c0f0
commit 341b865887
3 changed files with 29 additions and 8 deletions

View File

@ -5,11 +5,6 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
UNIFIED_SOURCES += [
'../insanity/lib/pkixbuild.cpp',
'../insanity/lib/pkixcheck.cpp',
'../insanity/lib/pkixder.cpp',
'../insanity/lib/pkixkey.cpp',
'../insanity/lib/pkixocsp.cpp',
'CertVerifier.cpp',
'NSSCertDBTrustDomain.cpp',
]
@ -24,7 +19,7 @@ LOCAL_INCLUDES += [
]
DIRS += [
'../insanity/test/lib',
'../insanity',
]
FAIL_ON_WARNINGS = True

View File

@ -0,0 +1,27 @@
# -*- 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 += [
'lib/pkixbuild.cpp',
'lib/pkixcheck.cpp',
'lib/pkixder.cpp',
'lib/pkixkey.cpp',
'lib/pkixocsp.cpp',
]
LOCAL_INCLUDES += [
'include',
]
DIRS += [
'test/lib',
]
FAIL_ON_WARNINGS = True
LIBRARY_NAME = 'insanitypkix'
FINAL_LIBRARY = 'xul'

View File

@ -10,10 +10,9 @@ LIBS = \
$(NSPR_LIBS) \
$(NSS_LIBS) \
$(MOZALLOC_LIB) \
../../../../../../certverifier/$(LIB_PREFIX)certverifier.$(LIB_SUFFIX) \
../../../../../../insanity/$(LIB_PREFIX)insanitypkix.$(LIB_SUFFIX) \
../../../../../../insanity/test/lib/$(LIB_PREFIX)pkixtestutil.$(LIB_SUFFIX) \
../lib/$(LIB_PREFIX)tlsserver.$(LIB_SUFFIX) \
$(NULL)
DEFINES += $(TK_CFLAGS)