mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
725 B
32 lines
725 B
{
|
|
"targets": [{
|
|
"target_name": "debugger-agent",
|
|
"type": "<(library)",
|
|
"include_dirs": [
|
|
"src",
|
|
"include",
|
|
"../v8/include",
|
|
"../uv/include",
|
|
|
|
# Private node.js folder and stuff needed to include from it
|
|
"../../src",
|
|
"../cares/include",
|
|
],
|
|
"direct_dependent_settings": {
|
|
"include_dirs": [
|
|
"include",
|
|
],
|
|
},
|
|
'conditions': [
|
|
[ 'gcc_version<=44', {
|
|
# GCC versions <= 4.4 do not handle the aliasing in the queue
|
|
# implementation, so disable aliasing on these platforms
|
|
# to avoid subtle bugs
|
|
'cflags': [ '-fno-strict-aliasing' ],
|
|
}],
|
|
],
|
|
"sources": [
|
|
"src/agent.cc",
|
|
],
|
|
}],
|
|
}
|
|
|