electron/spec/fixtures/native-addon/osr-gpu/binding.gyp
reito 65cd09ffaf
feat: GPU shared texture offscreen rendering (33-x-y) (#44511)
* feat: GPU shared texture offscreen rendering

* fix: EmitWarning in node utils.

Signed-off-by: reito <cnschwarzer@qq.com>

* fix: resolve conflict and reformat

---------

Signed-off-by: reito <cnschwarzer@qq.com>
2024-11-07 09:41:09 -05:00

16 lines
411 B
Python

{
"targets": [
{
"target_name": "osr-gpu",
"sources": ['napi_utils.h'],
"conditions": [
['OS=="win"', {
'sources': ['binding_win.cc'],
'link_settings': {
'libraries': ['dxgi.lib', 'd3d11.lib', 'dxguid.lib'],
}
}],
],
}
]
}