2014-03-12 13:08:18 -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/.
|
|
|
|
|
2014-06-16 22:57:55 -07:00
|
|
|
SOURCES += [
|
2014-03-12 13:08:18 -07:00
|
|
|
'lib/pkixbuild.cpp',
|
2014-07-03 16:59:42 -07:00
|
|
|
'lib/pkixcert.cpp',
|
2014-03-12 13:08:18 -07:00
|
|
|
'lib/pkixcheck.cpp',
|
|
|
|
'lib/pkixder.cpp',
|
2014-09-30 14:41:39 -07:00
|
|
|
'lib/pkixnames.cpp',
|
2014-07-18 11:48:49 -07:00
|
|
|
'lib/pkixnss.cpp',
|
2014-03-12 13:08:18 -07:00
|
|
|
'lib/pkixocsp.cpp',
|
2014-08-31 19:42:36 -07:00
|
|
|
'lib/pkixresult.cpp',
|
2014-08-02 08:49:12 -07:00
|
|
|
'lib/pkixtime.cpp',
|
2015-02-07 12:14:31 -08:00
|
|
|
'lib/pkixverify.cpp',
|
2014-03-12 13:08:18 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'include',
|
|
|
|
]
|
|
|
|
|
2014-03-26 16:00:03 -07:00
|
|
|
TEST_DIRS += [
|
|
|
|
'test/gtest',
|
2014-03-12 13:08:18 -07:00
|
|
|
'test/lib',
|
|
|
|
]
|
|
|
|
|
2015-02-07 14:38:40 -08:00
|
|
|
include('warnings.mozbuild')
|
2014-03-12 13:08:18 -07:00
|
|
|
|
2014-09-02 22:10:54 -07:00
|
|
|
Library('mozillapkix')
|
2014-03-12 13:08:18 -07:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|