Skip to content

Latest commit

 

History

History
45 lines (45 loc) · 977 Bytes

gtest.gypi

File metadata and controls

45 lines (45 loc) · 977 Bytes
 
1
2
3
4
5
# 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/.
{
'target_defaults': {
Feb 10, 2017
Feb 10, 2017
6
7
8
9
10
'include_dirs': [
'<(DEPTH)/gtests/google_test/gtest/include',
'<(DEPTH)/gtests/common',
'<(DEPTH)/cpputil',
],
Feb 2, 2017
Feb 2, 2017
11
12
13
14
15
16
17
18
'cflags': [
'-Wsign-compare',
],
'xcode_settings': {
'OTHER_CFLAGS': [
'-Wsign-compare',
],
},
19
20
21
22
23
24
25
26
27
28
29
'conditions': [
['OS=="win"', {
'libraries': [
'-lws2_32',
],
}],
['OS=="android"', {
'libraries': [
'-lstdc++',
],
}],
Mar 22, 2017
Mar 22, 2017
30
[ 'fuzz==1', {
Oct 25, 2016
Oct 25, 2016
31
32
33
34
'defines': [
'UNSAFE_FUZZER_MODE',
],
}],
35
36
37
38
39
40
41
42
43
44
45
],
'msvs_settings': {
'VCCLCompilerTool': {
'ExceptionHandling': 1,
'PreprocessorDefinitions': [
'NOMINMAX',
],
},
},
},
}