Skip to content

Latest commit

 

History

History
48 lines (48 loc) · 1.16 KB

util_gtest.gyp

File metadata and controls

48 lines (48 loc) · 1.16 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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': [
{
'target_name': 'util_gtest',
'type': 'executable',
'sources': [
Aug 16, 2017
Aug 16, 2017
14
'util_aligned_malloc_unittest.cc',
Feb 4, 2019
Feb 4, 2019
15
16
'util_b64_unittest.cc',
'util_gtests.cc',
Sep 5, 2017
Sep 5, 2017
17
'util_memcmpzero_unittest.cc',
Feb 4, 2019
Feb 4, 2019
18
'util_pkcs11uri_unittest.cc',
May 16, 2022
May 16, 2022
19
'util_secasn1d_unittest.cc',
May 17, 2023
May 17, 2023
20
'util_select_unittest.cc',
Feb 4, 2019
Feb 4, 2019
21
'util_utf8_unittest.cc',
22
23
24
],
'dependencies': [
'<(DEPTH)/exports.gyp:nss_exports',
Oct 27, 2016
Oct 27, 2016
25
'<(DEPTH)/gtests/google_test/google_test.gyp:gtest',
26
'<(DEPTH)/lib/util/util.gyp:nssutil',
May 23, 2017
May 23, 2017
27
28
29
30
31
32
33
34
35
36
37
],
'conditions': [
[ 'OS=="win"', {
'libraries': [
'advapi32.lib',
],
}],
],
'defines': [
'NSS_USE_STATIC_LIBS'
],
38
39
40
41
42
43
44
45
46
47
48
}
],
'target_defaults': {
'include_dirs': [
'../../lib/util'
]
},
'variables': {
'module': 'nss'
}
}