tor-browser

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

nss_bogo_shim.gyp (1918B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 {
      5   'includes': [
      6     '../../coreconf/config.gypi'
      7   ],
      8   'targets': [
      9     {
     10       'target_name': 'nss_bogo_shim',
     11       'type': 'executable',
     12       'sources': [
     13         'config.cc',
     14         'nss_bogo_shim.cc',
     15         'nsskeys.cc'
     16       ],
     17       'dependencies': [
     18         '<(DEPTH)/exports.gyp:nss_exports',
     19         '<(DEPTH)/lib/util/util.gyp:nssutil3',
     20         '<(DEPTH)/lib/sqlite/sqlite.gyp:sqlite3',
     21         '<(DEPTH)/gtests/google_test/google_test.gyp:gtest',
     22         '<(DEPTH)/lib/softoken/softoken.gyp:softokn',
     23         '<(DEPTH)/lib/smime/smime.gyp:smime',
     24         '<(DEPTH)/lib/ssl/ssl.gyp:ssl',
     25         '<(DEPTH)/lib/nss/nss.gyp:nss_static',
     26         '<(DEPTH)/cmd/lib/lib.gyp:sectool',
     27         '<(DEPTH)/lib/pkcs12/pkcs12.gyp:pkcs12',
     28         '<(DEPTH)/lib/pkcs7/pkcs7.gyp:pkcs7',
     29         '<(DEPTH)/lib/certhigh/certhigh.gyp:certhi',
     30         '<(DEPTH)/lib/cryptohi/cryptohi.gyp:cryptohi',
     31         '<(DEPTH)/lib/pk11wrap/pk11wrap.gyp:pk11wrap',
     32         '<(DEPTH)/lib/softoken/softoken.gyp:softokn',
     33         '<(DEPTH)/lib/certdb/certdb.gyp:certdb',
     34         '<(DEPTH)/lib/pki/pki.gyp:nsspki',
     35         '<(DEPTH)/lib/dev/dev.gyp:nssdev',
     36         '<(DEPTH)/lib/base/base.gyp:nssb',
     37         '<(DEPTH)/lib/freebl/freebl.gyp:freebl',
     38         '<(DEPTH)/lib/libpkix/libpkix.gyp:libpkix',
     39         '<(DEPTH)/cpputil/cpputil.gyp:cpputil',
     40       ],
     41       'conditions': [
     42         [ 'disable_dbm==0', {
     43           'dependencies': [
     44             '<(DEPTH)/lib/dbm/src/src.gyp:dbm',
     45           ],
     46         }],
     47       ],
     48     }
     49   ],
     50   'target_defaults': {
     51     'defines': [
     52       'NSS_USE_STATIC_LIBS'
     53     ],
     54     'include_dirs': [
     55       '../../lib/ssl'
     56     ],
     57   },
     58   'variables': {
     59     'module': 'nss',
     60     'use_static_libs': 1
     61   }
     62 }