summaryrefslogtreecommitdiff
path: root/nss/lib/nss/nss.gyp
blob: 56984d9f14903c9a7ba51d5a775f494596789bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
{
  'includes': [
    '../../coreconf/config.gypi'
  ],
  'targets': [
    {
      'target_name': 'nss_static',
      'type': 'static_library',
      'sources': [
        'nssinit.c',
        'nssoptions.c',
        'nssver.c',
        'utilwrap.c'
      ],
      'dependencies': [
        '<(DEPTH)/exports.gyp:nss_exports',
      ]
    },
    {
      # This is here so Firefox can link this without having to
      # repeat the list of dependencies.
      'target_name': 'nss3_deps',
      'type': 'none',
      'dependencies': [
        'nss_static',
        '<(DEPTH)/lib/certhigh/certhigh.gyp:certhi',
        '<(DEPTH)/lib/cryptohi/cryptohi.gyp:cryptohi',
        '<(DEPTH)/lib/pk11wrap/pk11wrap.gyp:pk11wrap',
        '<(DEPTH)/lib/certdb/certdb.gyp:certdb',
        '<(DEPTH)/lib/pki/pki.gyp:nsspki',
        '<(DEPTH)/lib/dev/dev.gyp:nssdev',
        '<(DEPTH)/lib/base/base.gyp:nssb',
      ],
      'conditions': [
        [ 'disable_libpkix==0', {
          'dependencies': [
            '<(DEPTH)/lib/libpkix/pkix/certsel/certsel.gyp:pkixcertsel',
            '<(DEPTH)/lib/libpkix/pkix/checker/checker.gyp:pkixchecker',
            '<(DEPTH)/lib/libpkix/pkix/params/params.gyp:pkixparams',
            '<(DEPTH)/lib/libpkix/pkix/results/results.gyp:pkixresults',
            '<(DEPTH)/lib/libpkix/pkix/top/top.gyp:pkixtop',
            '<(DEPTH)/lib/libpkix/pkix/util/util.gyp:pkixutil',
            '<(DEPTH)/lib/libpkix/pkix/crlsel/crlsel.gyp:pkixcrlsel',
            '<(DEPTH)/lib/libpkix/pkix/store/store.gyp:pkixstore',
            '<(DEPTH)/lib/libpkix/pkix_pl_nss/pki/pki.gyp:pkixpki',
            '<(DEPTH)/lib/libpkix/pkix_pl_nss/system/system.gyp:pkixsystem',
            '<(DEPTH)/lib/libpkix/pkix_pl_nss/module/module.gyp:pkixmodule'
          ],
          }],
        ],
    },
    {
      'target_name': 'nss3',
      'type': 'shared_library',
      'dependencies': [
        'nss3_deps',
        '<(DEPTH)/lib/util/util.gyp:nssutil3',
      ],
      'variables': {
        'mapfile': 'nss.def'
      }
    }
  ],
  'conditions': [
    [ 'moz_fold_libs==1', {
      'targets': [
        {
          'target_name': 'nss3_static',
          'type': 'static_library',
          'dependencies': [
            'nss3_deps',
          ],
        }
      ],
    }],
  ],
  'variables': {
    'module': 'nss'
  }
}