1d146d431a
Reason for revert: breaking the buildbots (see http://108.170.220.76:10117/builders/Build-Win7-VS2010-x86-Release-ANGLE/builds/3198). NOTRY=true Original issue's description: > Roll ANGLE. > > BUG=skia:2272 > > Committed: http://code.google.com/p/skia/source/detail?r=14243 > > Committed: http://code.google.com/p/skia/source/detail?r=14509 R=bsalomon@chromium.org, bsalomon@google.com, geofflang@chromium.org, djsollen@google.com, mtklein@google.com Author: djsollen@google.com Review URL: https://codereview.chromium.org/264733006 git-svn-id: http://skia.googlecode.com/svn/trunk@14517 2bbb7eff-a529-9590-31e7-b0007b416f81
57 lines
1.3 KiB
Python
57 lines
1.3 KiB
Python
# ANGLE is the Windows-specific translator from OGL ES 2.0 to D3D 9
|
|
|
|
{
|
|
'conditions': [
|
|
[ 'skia_angle', {
|
|
'target_defaults': {
|
|
'include_dirs': [
|
|
'$(DXSDK_DIR)/Include',
|
|
],
|
|
'msvs_settings': {
|
|
'VCLinkerTool': {
|
|
'conditions': [
|
|
[ 'skia_arch_width == 32 ', {
|
|
'AdditionalLibraryDirectories': [
|
|
'$(DXSDK_DIR)/Lib/x86',
|
|
],
|
|
},{
|
|
'AdditionalLibraryDirectories': [
|
|
'$(DXSDK_DIR)/Lib/x64',
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
},
|
|
'defines': [
|
|
'NOMINMAX',
|
|
],
|
|
'defines/': [
|
|
['exclude', 'ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES'],
|
|
],
|
|
},
|
|
'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',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|