OLD | NEW |
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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 '-lGLESv2', | 389 '-lGLESv2', |
390 ], | 390 ], |
391 }, | 391 }, |
392 }], | 392 }], |
393 ['chromeos == 1', { | 393 ['chromeos == 1', { |
394 'sources': [ | 394 'sources': [ |
395 'common/gpu/media/h264_parser.cc', | 395 'common/gpu/media/h264_parser.cc', |
396 'common/gpu/media/h264_parser.h', | 396 'common/gpu/media/h264_parser.h', |
397 ], | 397 ], |
398 }], | 398 }], |
399 ['chromeos == 1', { | |
400 'sources': [ | |
401 'common/gpu/media/h264_dpb.cc', | |
402 'common/gpu/media/h264_dpb.h', | |
403 'common/gpu/media/vaapi_h264_decoder.cc', | |
404 'common/gpu/media/vaapi_h264_decoder.h', | |
405 'common/gpu/media/vaapi_video_decode_accelerator.cc', | |
406 'common/gpu/media/vaapi_video_decode_accelerator.h', | |
407 ], | |
408 'include_dirs': [ | |
409 '<(DEPTH)/third_party/libva', | |
410 ], | |
411 }], | |
412 ['OS=="win"', { | 399 ['OS=="win"', { |
413 'dependencies': [ | 400 'dependencies': [ |
414 '../media/media.gyp:media', | 401 '../media/media.gyp:media', |
415 '../ui/gl/gl.gyp:gl', | 402 '../ui/gl/gl.gyp:gl', |
416 ], | 403 ], |
417 'link_settings': { | 404 'link_settings': { |
418 'libraries': [ | 405 'libraries': [ |
419 '-ld3d9.lib', | 406 '-ld3d9.lib', |
420 '-ld3dx9.lib', | 407 '-ld3dx9.lib', |
421 '-ldxva2.lib', | 408 '-ldxva2.lib', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 '../build/extract_from_cab.py', | 451 '../build/extract_from_cab.py', |
465 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 452 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
466 '<(output)', | 453 '<(output)', |
467 '<(PRODUCT_DIR)', | 454 '<(PRODUCT_DIR)', |
468 ], | 455 ], |
469 }, | 456 }, |
470 ] | 457 ] |
471 }] | 458 }] |
472 ], | 459 ], |
473 } | 460 } |
OLD | NEW |