mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
242431f427
--HG-- extra : rebase_source : 85266413568df928cb1eaf1cd59b52ee9d4259e6 extra : histedit_source : 767e3263d28926435c6d2f4610c7d8b01e9ba87d
34 lines
735 B
Python
34 lines
735 B
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 += [
|
|
'lib/pkixbuild.cpp',
|
|
'lib/pkixcert.cpp',
|
|
'lib/pkixcheck.cpp',
|
|
'lib/pkixder.cpp',
|
|
'lib/pkixnames.cpp',
|
|
'lib/pkixnss.cpp',
|
|
'lib/pkixocsp.cpp',
|
|
'lib/pkixresult.cpp',
|
|
'lib/pkixtime.cpp',
|
|
'lib/pkixverify.cpp',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'include',
|
|
]
|
|
|
|
TEST_DIRS += [
|
|
'test/gtest',
|
|
'test/lib',
|
|
]
|
|
|
|
include('warnings.mozbuild')
|
|
|
|
Library('mozillapkix')
|
|
|
|
FINAL_LIBRARY = 'xul'
|