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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../build/temp_gyp/googleurl.gyp:googleurl', 8 '../build/temp_gyp/googleurl.gyp:googleurl',
9 '../gpu/gpu.gyp:gpu_ipc', 9 '../gpu/gpu.gyp:gpu_ipc',
10 '../ipc/ipc.gyp:ipc', 10 '../ipc/ipc.gyp:ipc',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'common/child_process_host_impl.h', 88 'common/child_process_host_impl.h',
89 'common/child_process_messages.h', 89 'common/child_process_messages.h',
90 'common/child_process_sandbox_support_impl_linux.cc', 90 'common/child_process_sandbox_support_impl_linux.cc',
91 'common/child_process_sandbox_support_impl_linux.h', 91 'common/child_process_sandbox_support_impl_linux.h',
92 'common/child_thread.cc', 92 'common/child_thread.cc',
93 'common/child_thread.h', 93 'common/child_thread.h',
94 'common/child_trace_message_filter.cc', 94 'common/child_trace_message_filter.cc',
95 'common/child_trace_message_filter.h', 95 'common/child_trace_message_filter.h',
96 'common/chrome_descriptors.h', 96 'common/chrome_descriptors.h',
97 'common/clipboard_messages.h', 97 'common/clipboard_messages.h',
98 'common/clipboard_messages.cc',
98 'common/content_message_generator.cc', 99 'common/content_message_generator.cc',
99 'common/content_message_generator.h', 100 'common/content_message_generator.h',
100 'common/content_export.h', 101 'common/content_export.h',
101 'common/content_counters.cc', 102 'common/content_counters.cc',
102 'common/content_counters.h', 103 'common/content_counters.h',
103 'common/content_paths.cc', 104 'common/content_paths.cc',
104 'common/css_colors.h', 105 'common/css_colors.h',
105 'common/database_messages.h', 106 'common/database_messages.h',
106 'common/database_util.cc', 107 'common/database_util.cc',
107 'common/database_util.h', 108 'common/database_util.h',
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 '<(DEPTH)/third_party/angle/include', 317 '<(DEPTH)/third_party/angle/include',
317 '<(DEPTH)/third_party/openmax/il', 318 '<(DEPTH)/third_party/openmax/il',
318 ], 319 ],
319 'link_settings': { 320 'link_settings': {
320 'libraries': [ 321 'libraries': [
321 '-lEGL', 322 '-lEGL',
322 '-lGLESv2', 323 '-lGLESv2',
323 ], 324 ],
324 }, 325 },
325 }], 326 }],
327 ['OS=="win"', {
328 'dependencies': [
329 '../media/media.gyp:media',
330 '../third_party/angle/src/build_angle.gyp:libEGL',
331 '../third_party/angle/src/build_angle.gyp:libGLESv2',
332 ],
333 'link_settings': {
334 'libraries': [
335 '-ld3d9.lib',
336 '-ldxva2.lib',
337 '-lmf.lib',
338 '-lmfplat.lib',
339 '-lmfuuid.lib',
340 '-ld3dx9.lib',
341 ],
342 'msvs_settings': {
343 'VCLinkerTool': {
344 'DelayLoadDLLs': [
345 'd3d9.dll',
346 'dxva2.dll',
347 'mf.dll',
348 'mfplat.dll',
349 ],
350 },
351 },
352 },
353 'sources': [
354 'common/gpu/media/gles2_texture_to_egl_image_translator.cc',
355 'common/gpu/media/gles2_texture_to_egl_image_translator.h',
356 'common/gpu/media/dxva_video_decode_accelerator.cc',
357 'common/gpu/media/dxva_video_decode_accelerator.h',
358 ],
359 'include_dirs': [
360 '<(DEPTH)/third_party/angle/include',
361 ],
362 }],
326 ['OS=="win" and directxsdk_exists=="True"', { 363 ['OS=="win" and directxsdk_exists=="True"', {
327 'actions': [ 364 'actions': [
328 { 365 {
329 'action_name': 'extract_xinput', 366 'action_name': 'extract_xinput',
330 'variables': { 367 'variables': {
331 'input': 'APR2007_xinput_x86.cab', 368 'input': 'APR2007_xinput_x86.cab',
332 'output': 'xinput1_3.dll', 369 'output': 'xinput1_3.dll',
333 }, 370 },
334 'inputs': [ 371 'inputs': [
335 '../third_party/directxsdk/files/Redist/<(input)', 372 '../third_party/directxsdk/files/Redist/<(input)',
336 ], 373 ],
337 'outputs': [ 374 'outputs': [
338 '<(PRODUCT_DIR)/<(output)', 375 '<(PRODUCT_DIR)/<(output)',
339 ], 376 ],
340 'action': [ 377 'action': [
341 'python', 378 'python',
342 '../build/extract_from_cab.py', 379 '../build/extract_from_cab.py',
343 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 380 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
344 '<(output)', 381 '<(output)',
345 '<(PRODUCT_DIR)', 382 '<(PRODUCT_DIR)',
346 ], 383 ],
347 }, 384 },
348 ] 385 ]
349 }] 386 }]
350 ], 387 ],
351 } 388 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698