mirror of https://github.com/nodejs/node.git
29 lines
552 B
Python
29 lines
552 B
Python
{
|
|
"targets": [
|
|
{
|
|
"target_name": "myobject",
|
|
"sources": [
|
|
"myobject.cc",
|
|
"myobject.h",
|
|
]
|
|
},
|
|
{
|
|
"target_name": "myobject_basic_finalizer",
|
|
"defines": [ "NAPI_EXPERIMENTAL" ],
|
|
"sources": [
|
|
"myobject.cc",
|
|
"myobject.h",
|
|
]
|
|
},
|
|
{
|
|
"target_name": "nested_wrap",
|
|
# Test without basic finalizers as it schedules differently.
|
|
"defines": [ "NAPI_VERSION=10" ],
|
|
"sources": [
|
|
"nested_wrap.cc",
|
|
"nested_wrap.h",
|
|
],
|
|
},
|
|
]
|
|
}
|