mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
68d38d677f
--HG-- extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
77 lines
1.9 KiB
Makefile
77 lines
1.9 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = ../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = pipnss
|
|
GRE_MODULE = 1
|
|
|
|
SDK_XPIDLSRCS = \
|
|
nsIASN1Object.idl \
|
|
nsIASN1Sequence.idl \
|
|
nsICertificateDialogs.idl \
|
|
nsICRLInfo.idl \
|
|
nsIX509Cert.idl \
|
|
nsIX509CertDB.idl \
|
|
nsIX509CertValidity.idl \
|
|
nsINSSVersion.idl \
|
|
$(NULL)
|
|
|
|
XPIDLSRCS = \
|
|
nsISSLCertErrorDialog.idl \
|
|
nsIBadCertListener2.idl \
|
|
nsISSLErrorListener.idl \
|
|
nsIIdentityInfo.idl \
|
|
nsIAssociatedContentSecurity.idl \
|
|
nsICertOverrideService.idl \
|
|
nsIRecentBadCertsService.idl \
|
|
nsIFormSigningDialog.idl \
|
|
nsIX509Cert2.idl \
|
|
nsIX509Cert3.idl \
|
|
nsIX509CertDB2.idl \
|
|
nsIX509CertList.idl \
|
|
nsIPKCS11.idl \
|
|
nsIPKCS11Slot.idl \
|
|
nsIPK11TokenDB.idl \
|
|
nsICertPickDialogs.idl \
|
|
nsIClientAuthDialogs.idl \
|
|
nsIDOMCryptoDialogs.idl \
|
|
nsIGenKeypairInfoDlg.idl \
|
|
nsITokenDialogs.idl \
|
|
nsITokenPasswordDialogs.idl \
|
|
nsISSLStatus.idl \
|
|
nsIKeygenThread.idl \
|
|
nsICMSSecureMessage.idl \
|
|
nsIUserCertPicker.idl \
|
|
nsIASN1PrintableItem.idl \
|
|
nsICMSDecoder.idl \
|
|
nsICMSEncoder.idl \
|
|
nsICMSMessageErrors.idl \
|
|
nsICMSMessage.idl \
|
|
nsICMSMessage2.idl \
|
|
nsINSSCertCache.idl \
|
|
nsIOCSPResponder.idl \
|
|
nsIPK11Token.idl \
|
|
nsIPKCS11ModuleDB.idl \
|
|
nsIPKCS11Module.idl \
|
|
nsICRLManager.idl \
|
|
nsISMimeCert.idl \
|
|
nsIStreamCipher.idl \
|
|
nsIKeyModule.idl \
|
|
nsIProtectedAuthThread.idl \
|
|
nsIDataSignatureVerifier.idl \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_XUL
|
|
XPIDLSRCS += nsICertTree.idl
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|