2014-03-26 16:00:03 -07: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/.
|
|
|
|
|
|
|
|
SOURCES += [
|
2014-07-05 22:14:25 -07:00
|
|
|
'pkixbuild_tests.cpp',
|
|
|
|
'pkixcert_extension_tests.cpp',
|
2014-06-19 00:13:20 -07:00
|
|
|
'pkixcheck_CheckKeyUsage_tests.cpp',
|
2014-07-03 16:59:42 -07:00
|
|
|
'pkixcheck_CheckValidity_tests.cpp',
|
2014-07-05 22:14:25 -07:00
|
|
|
|
|
|
|
# The naming conventions are described in ./README.txt.
|
|
|
|
|
2014-03-26 16:00:03 -07:00
|
|
|
'pkixder_input_tests.cpp',
|
|
|
|
'pkixder_pki_types_tests.cpp',
|
|
|
|
'pkixder_universal_types_tests.cpp',
|
2014-08-31 20:42:28 -07:00
|
|
|
'pkixgtest.cpp',
|
2014-07-05 22:14:25 -07:00
|
|
|
'pkixocsp_CreateEncodedOCSPRequest_tests.cpp',
|
2014-07-14 23:09:36 -07:00
|
|
|
'pkixocsp_VerifyEncodedOCSPResponse.cpp',
|
2014-03-26 16:00:03 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../../include',
|
|
|
|
'../../lib',
|
2014-05-14 10:05:32 -07:00
|
|
|
'../lib',
|
2014-03-26 16:00:03 -07:00
|
|
|
]
|
|
|
|
|
2014-05-14 10:05:32 -07:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
2014-03-26 16:00:03 -07:00
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
2014-05-17 20:12:10 -07:00
|
|
|
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
CXXFLAGS += [
|
|
|
|
'-wd4275', # non dll-interface class used as base for dll-interface class
|
|
|
|
]
|
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|