tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

manifest.mn (1077B)


      1 # 
      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 
      8 LIB_SRCDIRS = \
      9 	google_test \
     10 	common \
     11 	$(NULL)
     12 
     13 common: google_test
     14 
     15 ifneq ($(NSS_BUILD_WITHOUT_UTIL),1)
     16 UTIL_SRCDIRS = \
     17 	util_gtest \
     18 	$(NULL)
     19 
     20 util_gtest: common
     21 endif
     22 
     23 ifneq ($(NSS_BUILD_SOFTOKEN_ONLY),1)
     24 ifneq ($(NSS_BUILD_UTIL_ONLY),1)
     25 NSS_SRCDIRS = \
     26 	base_gtest \
     27 	certdb_gtest \
     28 	certhigh_gtest \
     29 	cryptohi_gtest \
     30 	der_gtest \
     31 	freebl_gtest \
     32 	pk11_gtest \
     33 	smime_gtest \
     34 	softoken_gtest \
     35 	ssl_gtest \
     36 	$(SYSINIT_GTEST) \
     37 	nss_bogo_shim \
     38 	pkcs11testmodule \
     39 	$(NULL)
     40 
     41 base_gtest: common
     42 certdb_gtest: common
     43 certhigh_gtest: common
     44 cryptohi_gtest: common
     45 der_gtest: common
     46 freebl_gtest: common
     47 pk11_gtest: common pkcs11testmodule
     48 smime_gtest: common
     49 softoken_gtest: common
     50 ssl_gtest: google_test
     51 sysinit_gtest: google_test
     52 util_gtest: common
     53 endif
     54 endif
     55 
     56 DIRS = \
     57 	$(LIB_SRCDIRS) \
     58 	$(UTIL_SRCDIRS) \
     59 	$(NSS_SRCDIRS) \
     60 	$(NULL)