-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathv8.gypi
More file actions
32 lines (32 loc) · 733 Bytes
/
v8.gypi
File metadata and controls
32 lines (32 loc) · 733 Bytes
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
{
'variables': {
'v8_dir%': 'build/v8/',
'libv8_show_warnings%': 0,
'libv8_include_dir%': '>(v8_dir)/include',
'libv8_lib_dir%': '>(v8_dir)/<(OS)-<(target_arch).<(CONFIGURATION_NAME)',
'conditions': [[
'OS=="android"', {
'libv8_libs%': [
'>(libv8_lib_dir)/libv8_monolith.a',
],
}, {
'libv8_libs%': [
'-lv8_monolith',
],
}]
]
},
'target_defaults': {
'conditions': [[
'libv8_show_warnings=="true"', {
'defines': [
'V8_DEPRECATION_WARNINGS',
'V8_IMMINENT_DEPRECATION_WARNINGS'
]
}
]],
'all_dependent_settings': {
'include_dirs': [ '<(libv8_include_dir)' ],
},
}
}