Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1936)

Unified Diff: content/content_common.gypi

Issue 8510039: Initial implementation of the DXVA 2.0 H.264 hardware decoder for pepper for Windows. The decodin... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/content_common.gypi
===================================================================
--- content/content_common.gypi (revision 113322)
+++ content/content_common.gypi (working copy)
@@ -95,6 +95,7 @@
'common/child_trace_message_filter.h',
'common/chrome_descriptors.h',
'common/clipboard_messages.h',
+ 'common/clipboard_messages.cc',
'common/content_message_generator.cc',
'common/content_message_generator.h',
'common/content_export.h',
@@ -323,6 +324,42 @@
],
},
}],
+ ['OS=="win"', {
+ 'dependencies': [
+ '../media/media.gyp:media',
+ '../third_party/angle/src/build_angle.gyp:libEGL',
+ '../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',
+ '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': [
{

Powered by Google App Engine
This is Rietveld 408576698