2014-03-27 03:00:03 +04: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/.
|
|
|
|
|
|
|
|
LIBRARY_NAME = 'mozillapkix_gtest'
|
|
|
|
|
|
|
|
SOURCES += [
|
2014-04-17 08:38:01 +04:00
|
|
|
'nssgtest.cpp',
|
2014-06-01 03:55:54 +04:00
|
|
|
'pkix_cert_chain_length_tests.cpp',
|
2014-06-10 00:57:44 +04:00
|
|
|
'pkix_cert_extension_tests.cpp',
|
2014-05-14 21:05:32 +04:00
|
|
|
'pkix_ocsp_request_tests.cpp',
|
2014-06-19 11:13:20 +04:00
|
|
|
'pkixcheck_CheckKeyUsage_tests.cpp',
|
2014-07-04 03:59:42 +04:00
|
|
|
'pkixcheck_CheckValidity_tests.cpp',
|
2014-03-27 03:00:03 +04:00
|
|
|
'pkixder_input_tests.cpp',
|
|
|
|
'pkixder_pki_types_tests.cpp',
|
|
|
|
'pkixder_universal_types_tests.cpp',
|
2014-06-19 10:40:34 +04:00
|
|
|
'pkixgtest.cpp',
|
2014-03-27 03:00:03 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../../include',
|
|
|
|
'../../lib',
|
2014-05-14 21:05:32 +04:00
|
|
|
'../lib',
|
2014-03-27 03:00:03 +04:00
|
|
|
]
|
|
|
|
|
2014-05-14 21:05:32 +04:00
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
2014-03-27 03:00:03 +04:00
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
2014-05-18 07:12:10 +04:00
|
|
|
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
CXXFLAGS += [
|
|
|
|
'-wd4275', # non dll-interface class used as base for dll-interface class
|
|
|
|
]
|
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|