Skip to content

Latest commit

 

History

History
68 lines (68 loc) · 1.77 KB

nss_tool.gyp

File metadata and controls

68 lines (68 loc) · 1.77 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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',
'../cmd/platlibs.gypi',
],
'targets' : [
{
'target_name' : 'nss',
'type' : 'executable',
'sources' : [
'nss_tool.cc',
'common/argparse.cc',
20
21
22
23
24
],
'include_dirs': [
'common',
],
'dependencies' : [
25
'<(DEPTH)/cpputil/cpputil.gyp:cpputil',
27
'<(DEPTH)/exports.gyp:nss_exports',
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
},
{
'target_name': 'hw-support',
'type': 'executable',
'sources': [
'hw-support.c',
],
'conditions': [
[ 'OS=="win"', {
'libraries': [
'advapi32.lib',
],
}],
],
'dependencies' : [
'<(DEPTH)/exports.gyp:nss_exports',
'<(DEPTH)/lib/util/util.gyp:nssutil3',
'<(DEPTH)/lib/nss/nss.gyp:nss_static',
'<(DEPTH)/lib/pk11wrap/pk11wrap.gyp:pk11wrap_static',
'<(DEPTH)/lib/cryptohi/cryptohi.gyp:cryptohi',
'<(DEPTH)/lib/certhigh/certhigh.gyp:certhi',
'<(DEPTH)/lib/certdb/certdb.gyp:certdb',
'<(DEPTH)/lib/base/base.gyp:nssb',
'<(DEPTH)/lib/dev/dev.gyp:nssdev',
'<(DEPTH)/lib/pki/pki.gyp:nsspki',
],
'include_dirs': [
'<(DEPTH)/lib/freebl',
'<(DEPTH)/lib/freebl/mpi',
],
'defines': [
'NSS_USE_STATIC_LIBS'
],
'variables': {
'module': 'nss',
'use_static_libs': 1
},
},