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 '../components/tracing.gyp:tracing', | 9 '../components/tracing.gyp:tracing', |
10 '../media/media.gyp:media', | 10 '../media/media.gyp:media', |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 'libraries': [ | 494 'libraries': [ |
495 '-lEGL', | 495 '-lEGL', |
496 '-lGLESv2', | 496 '-lGLESv2', |
497 ], | 497 ], |
498 }, | 498 }, |
499 }], | 499 }], |
500 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { | 500 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { |
501 'sources': [ | 501 'sources': [ |
502 'common/gpu/media/h264_dpb.cc', | 502 'common/gpu/media/h264_dpb.cc', |
503 'common/gpu/media/h264_dpb.h', | 503 'common/gpu/media/h264_dpb.h', |
| 504 'common/gpu/media/va_surface.h', |
504 'common/gpu/media/vaapi_h264_decoder.cc', | 505 'common/gpu/media/vaapi_h264_decoder.cc', |
505 'common/gpu/media/vaapi_h264_decoder.h', | 506 'common/gpu/media/vaapi_h264_decoder.h', |
506 'common/gpu/media/vaapi_video_decode_accelerator.cc', | 507 'common/gpu/media/vaapi_video_decode_accelerator.cc', |
507 'common/gpu/media/vaapi_video_decode_accelerator.h', | 508 'common/gpu/media/vaapi_video_decode_accelerator.h', |
| 509 'common/gpu/media/vaapi_wrapper.cc', |
| 510 'common/gpu/media/vaapi_wrapper.h', |
508 ], | 511 ], |
509 'include_dirs': [ | 512 'include_dirs': [ |
510 '<(DEPTH)/third_party/libva', | 513 '<(DEPTH)/third_party/libva', |
511 ], | 514 ], |
512 }], | 515 }], |
513 ['OS=="win"', { | 516 ['OS=="win"', { |
514 'dependencies': [ | 517 'dependencies': [ |
515 '../media/media.gyp:media', | 518 '../media/media.gyp:media', |
516 '../ui/gl/gl.gyp:gl', | 519 '../ui/gl/gl.gyp:gl', |
517 ], | 520 ], |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 566 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
564 '<(output)', | 567 '<(output)', |
565 '<(PRODUCT_DIR)', | 568 '<(PRODUCT_DIR)', |
566 ], | 569 ], |
567 'msvs_cygwin_shell': 1, | 570 'msvs_cygwin_shell': 1, |
568 }, | 571 }, |
569 ] | 572 ] |
570 }], | 573 }], |
571 ], | 574 ], |
572 } | 575 } |
OLD | NEW |