diff options
Diffstat (limited to 'security/nss/gtests/common/manifest.mn')
-rw-r--r-- | security/nss/gtests/common/manifest.mn | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/security/nss/gtests/common/manifest.mn b/security/nss/gtests/common/manifest.mn index 9834e42a0..5d36c269f 100644 --- a/security/nss/gtests/common/manifest.mn +++ b/security/nss/gtests/common/manifest.mn @@ -6,16 +6,18 @@ CORE_DEPTH = ../.. DEPTH = ../.. MODULE = nss -CPPSRCS = \ - gtests.cc \ - $(NULL) +LIBRARY_NAME = gtestutil + +ifeq ($(NSS_BUILD_UTIL_ONLY),1) +CPPSRCS = gtests-util.cc +else +CPPSRCS = gtests.cc +endif INCLUDES += -I$(CORE_DEPTH)/gtests/google_test/gtest/include \ - -I$(CORE_DEPTH)/gtests/common + -I$(CORE_DEPTH)/gtests/common \ + -I$(CORE_DEPTH)/cpputil REQUIRES = gtest EXTRA_LIBS = $(DIST)/lib/$(LIB_PREFIX)gtest.$(LIB_SUFFIX) - -# NOTE: this is not actually used but required to build gtests.o -PROGRAM = gtests |