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

Side by Side Diff: content/content_common.gypi

Issue 9814001: Add VAVDA, the VAAPI Video Decode Accelerator for Intel CPUs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for occasional decode freeze on output falling behind for more demanding streams. Created 8 years, 8 months 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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:gles2_implementation', 9 '../gpu/gpu.gyp:gles2_implementation',
10 '../gpu/gpu.gyp:gpu_ipc', 10 '../gpu/gpu.gyp:gpu_ipc',
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 '<(DEPTH)/third_party/angle/include', 376 '<(DEPTH)/third_party/angle/include',
377 '<(DEPTH)/third_party/openmax/il', 377 '<(DEPTH)/third_party/openmax/il',
378 ], 378 ],
379 'link_settings': { 379 'link_settings': {
380 'libraries': [ 380 'libraries': [
381 '-lEGL', 381 '-lEGL',
382 '-lGLESv2', 382 '-lGLESv2',
383 ], 383 ],
384 }, 384 },
385 }], 385 }],
386 ['chromeos == 1', {
387 'dependencies': [
388 '../media/media.gyp:media',
389 ],
390 'sources': [
391 'common/gpu/media/h264_dpb.cc',
392 'common/gpu/media/h264_dpb.h',
393 'common/gpu/media/vaapi_h264_decoder.cc',
394 'common/gpu/media/vaapi_h264_decoder.h',
395 'common/gpu/media/vaapi_video_decode_accelerator.cc',
396 'common/gpu/media/vaapi_video_decode_accelerator.h',
397 ],
398 'include_dirs': [
399 '<(DEPTH)/third_party/libva',
400 ],
401 }],
386 ['OS=="win"', { 402 ['OS=="win"', {
387 'dependencies': [ 403 'dependencies': [
388 '../media/media.gyp:media', 404 '../media/media.gyp:media',
389 '../ui/gfx/gl/gl.gyp:gl', 405 '../ui/gfx/gl/gl.gyp:gl',
390 ], 406 ],
391 'link_settings': { 407 'link_settings': {
392 'libraries': [ 408 'libraries': [
393 '-ld3d9.lib', 409 '-ld3d9.lib',
394 '-ld3dx9.lib', 410 '-ld3dx9.lib',
395 '-ldxva2.lib', 411 '-ldxva2.lib',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 '../build/extract_from_cab.py', 453 '../build/extract_from_cab.py',
438 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 454 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
439 '<(output)', 455 '<(output)',
440 '<(PRODUCT_DIR)', 456 '<(PRODUCT_DIR)',
441 ], 457 ],
442 }, 458 },
443 ] 459 ]
444 }] 460 }]
445 ], 461 ],
446 } 462 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698