Commit 2212b3d5 by Jamie Madill

Only generate shader debug info on Windows.

This was messing up the Linux build with some recent changes. BUG=angle:773 Change-Id: I9ca201f08ddde0a36224872b2c78d1d666cf458d Reviewed-on: https://chromium-review.googlesource.com/232792Reviewed-by: 's avatarBrandon Jones <bajones@chromium.org> Tested-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 36e86234
...@@ -547,28 +547,31 @@ ...@@ -547,28 +547,31 @@
{ {
'msvs_enable_winphone' : '1', 'msvs_enable_winphone' : '1',
}], }],
], ['OS=="win"',
'configurations':
{
'Debug_Base':
{ {
'defines': 'configurations':
[
'ANGLE_ENABLE_DEBUG_ANNOTATIONS',
'ANGLE_GENERATE_SHADER_DEBUG_INFO'
],
'msvs_settings':
{ {
'VCLinkerTool': 'Debug_Base':
{ {
'AdditionalDependencies': 'defines':
[ [
'd3d9.lib', 'ANGLE_ENABLE_DEBUG_ANNOTATIONS',
] 'ANGLE_GENERATE_SHADER_DEBUG_INFO'
} ],
'msvs_settings':
{
'VCLinkerTool':
{
'AdditionalDependencies':
[
'd3d9.lib',
]
}
},
},
}, },
}, }],
}, ],
}, },
{ {
'target_name': 'libGLESv2', 'target_name': 'libGLESv2',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment