skia2/gyp/angle.gyp
borenet@google.com a72aef8a21 Refactor skia_warnings_as_errors
Review URL: https://codereview.chromium.org/12963002

git-svn-id: http://skia.googlecode.com/svn/trunk@8330 2bbb7eff-a529-9590-31e7-b0007b416f81
2013-03-22 13:16:06 +00:00

42 lines
833 B
Python

# ANGLE is the Windows-specific translator from OGL ES 2.0 to D3D 9
{
'conditions': [
[ 'skia_angle', {
'target_defaults': {
'defines': [
'NOMINMAX',
],
},
'variables': {
'component': 'static_library',
'skia_warnings_as_errors': 0,
},
'includes': [
'../third_party/externals/angle/src/build_angle.gypi',
],
}],
],
'targets': [
{
'target_name': 'angle',
'type': 'none',
'conditions': [
[ 'skia_angle', {
'direct_dependent_settings': {
'include_dirs': [
'../third_party/externals/angle/include',
],
},
}],
],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: