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

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: Created 8 years, 7 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 '<(DEPTH)/third_party/angle/include', 380 '<(DEPTH)/third_party/angle/include',
381 '<(DEPTH)/third_party/openmax/il', 381 '<(DEPTH)/third_party/openmax/il',
382 ], 382 ],
383 'link_settings': { 383 'link_settings': {
384 'libraries': [ 384 'libraries': [
385 '-lEGL', 385 '-lEGL',
386 '-lGLESv2', 386 '-lGLESv2',
387 ], 387 ],
388 }, 388 },
389 }], 389 }],
390 ['chromeos == 1', {
391 'sources': [
392 'common/gpu/media/h264_dpb.cc',
393 'common/gpu/media/h264_dpb.h',
394 'common/gpu/media/vaapi_h264_decoder.cc',
395 'common/gpu/media/vaapi_h264_decoder.h',
396 'common/gpu/media/vaapi_video_decode_accelerator.cc',
397 'common/gpu/media/vaapi_video_decode_accelerator.h',
398 ],
399 'include_dirs': [
400 '<(DEPTH)/third_party/libva',
401 ],
402 }],
390 ['OS=="win"', { 403 ['OS=="win"', {
391 'dependencies': [ 404 'dependencies': [
392 '../media/media.gyp:media', 405 '../media/media.gyp:media',
393 '../ui/gfx/gl/gl.gyp:gl', 406 '../ui/gfx/gl/gl.gyp:gl',
394 ], 407 ],
395 'link_settings': { 408 'link_settings': {
396 'libraries': [ 409 'libraries': [
397 '-ld3d9.lib', 410 '-ld3d9.lib',
398 '-ld3dx9.lib', 411 '-ld3dx9.lib',
399 '-ldxva2.lib', 412 '-ldxva2.lib',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 '../build/extract_from_cab.py', 455 '../build/extract_from_cab.py',
443 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 456 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
444 '<(output)', 457 '<(output)',
445 '<(PRODUCT_DIR)', 458 '<(PRODUCT_DIR)',
446 ], 459 ],
447 }, 460 },
448 ] 461 ]
449 }] 462 }]
450 ], 463 ],
451 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698