-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gyp
75 lines (75 loc) · 1.55 KB
/
dependencies.gyp
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
{
'includes': [
'build/common.gypi',
],
'targets': [
{
'target_name': 'gtest',
'type': 'static_library',
'variables': {
'project_dir': 'dependencies/gtest-svn-head',
},
'defines': [
'GTEST_HAS_PTHREAD=0',
],
'include_dirs': [
'<(project_dir)',
'<(project_dir)/include',
],
'sources': [
'<(project_dir)/src/gtest-all.cc',
],
'direct_dependent_settings': {
'include_dirs': [
'<(project_dir)/include',
],
'defines': [
'GTEST_HAS_PTHREAD=0',
],
'conditions': [
['OS=="win"', {
'defines': [
'GTEST_HAS_TR1_TUPLE=0',
],
}],
],
},
'conditions': [
['OS!="win"', {
'product_dir': 'output/<(platform_name)/<(architecture_name)/<(CONFIGURATION_NAME)',
}],
['OS=="win"', {
'defines': [
'GTEST_HAS_TR1_TUPLE=0',
],
}],
],
},
{
'target_name': 'quickcheck',
'type': 'none',
'variables': {
'project_dir': 'dependencies/quickcheck_0.0.3',
},
'include_dirs': [
'<(project_dir)',
],
'sources': [
'<(project_dir)/quickcheck/generate.hh',
'<(project_dir)/quickcheck/ostream.hh',
'<(project_dir)/quickcheck/Property.hh',
'<(project_dir)/quickcheck/quickcheck.hh',
],
'direct_dependent_settings': {
'include_dirs': [
'<(project_dir)',
],
},
'conditions': [
['OS!="win"', {
'product_dir': 'output/<(platform_name)/<(architecture_name)/<(CONFIGURATION_NAME)',
}],
],
},
],
}