diff options
Diffstat (limited to 'security/nss/gtests/manifest.mn')
-rw-r--r-- | security/nss/gtests/manifest.mn | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/security/nss/gtests/manifest.mn b/security/nss/gtests/manifest.mn index 149e24b26..1ae4cab77 100644 --- a/security/nss/gtests/manifest.mn +++ b/security/nss/gtests/manifest.mn @@ -5,12 +5,32 @@ CORE_DEPTH = .. DEPTH = .. -DIRS = \ +LIB_SRCDIRS = \ google_test \ common \ - der_gtest \ + $(NULL) + +ifneq ($(NSS_BUILD_WITHOUT_UTIL),1) +UTIL_SRCDIRS = \ util_gtest \ + der_gtest \ + $(NULL) +endif + +ifneq ($(NSS_BUILD_SOFTOKEN_ONLY),1) +ifneq ($(NSS_BUILD_UTIL_ONLY),1) +NSS_SRCDIRS = \ + certdb_gtest \ + certhigh_gtest \ pk11_gtest \ ssl_gtest \ nss_bogo_shim \ $(NULL) +endif +endif + +DIRS = \ + $(LIB_SRCDIRS) \ + $(UTIL_SRCDIRS) \ + $(NSS_SRCDIRS) \ + $(NULL) |