manifest.mn (909B)
1 # -*- makefile -*- 2 # This Source Code Form is subject to the terms of the Mozilla Public 3 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 CORE_DEPTH = ../.. 6 DEPTH = ../.. 7 MODULE = nss 8 9 DEFINES += -DDLL_SUFFIX=\"$(DLL_SUFFIX)\" -DDLL_PREFIX=\"$(DLL_PREFIX)\" 10 11 include $(CORE_DEPTH)/coreconf/arch.mk 12 ifneq ($(OS_ARCH),WINNT) 13 DB_TESTS = \ 14 softoken_nssckbi_testlib_gtest.cc 15 endif 16 17 CPPSRCS = \ 18 softoken_gtest.cc \ 19 $(DB_TESTS) \ 20 $(NULL) 21 22 INCLUDES += \ 23 -I$(CORE_DEPTH)/gtests/google_test/gtest/include \ 24 -I$(CORE_DEPTH)/gtests/common \ 25 -I$(CORE_DEPTH)/cpputil \ 26 $(NULL) 27 28 REQUIRES = nspr gtest cpputil 29 30 PROGRAM = softoken_gtest 31 32 EXTRA_LIBS = \ 33 $(DIST)/lib/$(LIB_PREFIX)gtest.$(LIB_SUFFIX) \ 34 $(DIST)/lib/$(LIB_PREFIX)cpputil.$(LIB_SUFFIX) \ 35 $(DIST)/lib/$(LIB_PREFIX)gtestutil.$(LIB_SUFFIX) \ 36 $(NULL) 37 38 USE_STATIC_LIBS = 1