Skip to content

Latest commit

 

History

History
106 lines (106 loc) · 2.67 KB

freebl_gtest.gyp

File metadata and controls

106 lines (106 loc) · 2.67 KB
 
1
2
3
4
5
6
7
8
9
10
# 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',
'../common/gtest.gypi',
],
'targets': [
{
Jun 29, 2017
Jun 29, 2017
11
12
13
# Dependencies for tests.
'target_name': 'freebl_gtest_deps',
'type': 'none',
14
'dependencies': [
Jan 25, 2017
Jan 25, 2017
15
'<(DEPTH)/lib/util/util.gyp:nssutil3',
16
'<(DEPTH)/gtests/google_test/google_test.gyp:gtest',
Jan 25, 2017
Jan 25, 2017
17
18
19
20
21
22
23
24
25
'<(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',
'<(DEPTH)/lib/ssl/ssl.gyp:ssl',
Feb 28, 2017
Feb 28, 2017
27
},
Jun 29, 2017
Jun 29, 2017
28
29
30
31
32
33
34
35
{
'target_name': 'freebl_gtest',
'type': 'executable',
'sources': [
'mpi_unittest.cc',
'dh_unittest.cc',
'ecl_unittest.cc',
'ghash_unittest.cc',
Nov 7, 2017
Nov 7, 2017
36
'rsa_unittest.cc',
Jun 29, 2017
Jun 29, 2017
37
38
39
40
41
42
43
'<(DEPTH)/gtests/common/gtests.cc'
],
'dependencies': [
'freebl_gtest_deps',
'<(DEPTH)/exports.gyp:nss_exports',
],
},
Feb 28, 2017
Feb 28, 2017
44
45
46
47
48
49
50
{
'target_name': 'prng_gtest',
'type': 'executable',
'sources': [
'prng_kat_unittest.cc',
],
'dependencies': [
Jun 29, 2017
Jun 29, 2017
51
'freebl_gtest_deps',
Feb 28, 2017
Feb 28, 2017
52
53
'<(DEPTH)/exports.gyp:nss_exports',
],
Jun 29, 2017
Jun 29, 2017
54
55
56
57
58
59
},
{
'target_name': 'blake2b_gtest',
'type': 'executable',
'sources': [
'blake2b_unittest.cc',
May 23, 2017
May 23, 2017
60
],
Jun 29, 2017
Jun 29, 2017
61
62
63
'dependencies': [
'freebl_gtest_deps',
'<(DEPTH)/exports.gyp:nss_exports',
May 23, 2017
May 23, 2017
64
],
Feb 28, 2017
Feb 28, 2017
65
},
66
67
68
],
'target_defaults': {
'include_dirs': [
Jun 29, 2017
Jun 29, 2017
69
'<(DEPTH)/lib/freebl/ecl',
70
'<(DEPTH)/lib/freebl/mpi',
Apr 4, 2017
Apr 4, 2017
71
'<(DEPTH)/lib/freebl/',
Jun 29, 2017
Jun 29, 2017
72
73
74
75
76
77
78
79
'<(DEPTH)/lib/ssl/',
'<(DEPTH)/lib/util/',
'<(DEPTH)/lib/certdb/',
'<(DEPTH)/lib/cryptohi/',
'<(DEPTH)/lib/pk11wrap/',
],
'defines': [
'NSS_USE_STATIC_LIBS',
May 9, 2017
May 9, 2017
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
],
# For test builds we have to set MPI defines.
'conditions': [
[ 'ct_verif==1', {
'defines': [
'CT_VERIF',
],
}],
[ 'target_arch=="ia32"', {
'defines': [
'MP_USE_UINT_DIGIT',
'MP_ASSEMBLY_MULTIPLY',
'MP_ASSEMBLY_SQUARE',
'MP_ASSEMBLY_DIV_2DX1D',
],
}],
Jun 29, 2017
Jun 29, 2017
96
97
98
99
100
[ 'OS=="win"', {
'libraries': [
'advapi32.lib',
],
}],
May 9, 2017
May 9, 2017
101
],
102
103
104
105
106
},
'variables': {
'module': 'nss'
}
}