2012-06-28 08:57:00 +00:00
|
|
|
# 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/.
|
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2012-06-28 08:57:00 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2012-07-03 21:53:37 +00:00
|
|
|
FAIL_ON_WARNINGS := 1
|
|
|
|
|
|
|
|
MODULE_NAME = identity
|
|
|
|
LIBRARY_NAME = identity
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
IS_COMPONENT = 1
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
IdentityCryptoService.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-06-28 08:57:00 +00:00
|
|
|
EXTRA_JS_MODULES = \
|
2012-11-01 23:23:14 +00:00
|
|
|
IdentityUtils.jsm \
|
2012-07-03 21:53:37 +00:00
|
|
|
Identity.jsm \
|
|
|
|
IdentityProvider.jsm \
|
|
|
|
IdentityStore.jsm \
|
|
|
|
jwcrypto.jsm \
|
|
|
|
LogUtils.jsm \
|
2012-10-26 11:39:38 +00:00
|
|
|
MinimalIdentity.jsm \
|
2012-07-03 21:53:37 +00:00
|
|
|
RelyingParty.jsm \
|
2012-06-28 08:57:00 +00:00
|
|
|
Sandbox.jsm \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-12-05 08:25:21 +00:00
|
|
|
JS_MODULES_PATH = $(FINAL_TARGET)/modules/identity
|
|
|
|
|
2012-06-28 08:57:00 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|