Index: content/content_common.gypi |
=================================================================== |
--- content/content_common.gypi (revision 114143) |
+++ content/content_common.gypi (working copy) |
@@ -324,6 +324,42 @@ |
], |
}, |
}], |
+ ['OS=="win"', { |
+ 'dependencies': [ |
+ '../media/media.gyp:media', |
+ '../third_party/angle/src/build_angle.gyp:libEGL', |
Ami GONE FROM CHROMIUM
2011/12/13 02:37:12
Are EGL/GLES2 really used by your impl?
ananta
2011/12/13 02:51:18
Not currently. But will be once we have an EGL ext
Ami GONE FROM CHROMIUM
2011/12/13 07:24:56
ISTM best to drop the deps until they're needed, b
|
+ '../third_party/angle/src/build_angle.gyp:libGLESv2', |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
+ '-ld3d9.lib', |
+ '-ldxva2.lib', |
+ '-lmf.lib', |
+ '-lmfplat.lib', |
+ '-lmfuuid.lib', |
+ '-ld3dx9.lib', |
+ ], |
+ 'msvs_settings': { |
+ 'VCLinkerTool': { |
+ 'DelayLoadDLLs': [ |
+ 'd3d9.dll', |
+ 'dxva2.dll', |
+ 'mf.dll', |
+ 'mfplat.dll', |
+ ], |
+ }, |
+ }, |
+ }, |
+ 'sources': [ |
+ 'common/gpu/media/gles2_texture_to_egl_image_translator.cc', |
Ami GONE FROM CHROMIUM
2011/12/13 02:37:12
Drop gles2->EGL translator?
ananta
2011/12/13 02:51:18
Done.
|
+ 'common/gpu/media/gles2_texture_to_egl_image_translator.h', |
+ 'common/gpu/media/dxva_video_decode_accelerator.cc', |
+ 'common/gpu/media/dxva_video_decode_accelerator.h', |
+ ], |
+ 'include_dirs': [ |
+ '<(DEPTH)/third_party/angle/include', |
+ ], |
+ }], |
['OS=="win" and directxsdk_exists=="True"', { |
'actions': [ |
{ |