skia2/gyp/angle.gyp
borenet@google.com 623ff0a5f7 Add ANGLE to DEPS, integrate build
Review URL: https://codereview.appspot.com/6494052

git-svn-id: http://skia.googlecode.com/svn/trunk@5387 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-09-04 16:45:05 +00:00

41 lines
795 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',
},
'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: