mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c66e0d494b
--HG-- rename : security/pkix/test/gtest/nssgtest.cpp => security/pkix/test/gtest/pkixgtest.cpp extra : rebase_source : 205faf2054134b3a7aecd55d53f73d19f2f86103
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
# -*- 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 += [
|
|
'pkixbuild_tests.cpp',
|
|
'pkixcert_extension_tests.cpp',
|
|
'pkixcheck_CheckKeyUsage_tests.cpp',
|
|
'pkixcheck_CheckValidity_tests.cpp',
|
|
|
|
# The naming conventions are described in ./README.txt.
|
|
|
|
'pkixder_input_tests.cpp',
|
|
'pkixder_pki_types_tests.cpp',
|
|
'pkixder_universal_types_tests.cpp',
|
|
'pkixgtest.cpp',
|
|
'pkixocsp_CreateEncodedOCSPRequest_tests.cpp',
|
|
'pkixocsp_VerifyEncodedOCSPResponse.cpp',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../../include',
|
|
'../../lib',
|
|
'../lib',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul-gtest'
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
CXXFLAGS += [
|
|
'-wd4275', # non dll-interface class used as base for dll-interface class
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|