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/components_tracing.gyp:tracing', | 9 '../components/components_tracing.gyp:tracing', |
10 '../media/media.gyp:media', | 10 '../media/media.gyp:media', |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 'sources!': [ | 479 'sources!': [ |
480 'common/pepper_plugin_registry.cc', | 480 'common/pepper_plugin_registry.cc', |
481 'common/pepper_plugin_registry.h', | 481 'common/pepper_plugin_registry.h', |
482 ], | 482 ], |
483 }], | 483 }], |
484 ['enable_gpu==1', { | 484 ['enable_gpu==1', { |
485 'dependencies': [ | 485 'dependencies': [ |
486 '../gpu/gpu.gyp:command_buffer_service', | 486 '../gpu/gpu.gyp:command_buffer_service', |
487 ], | 487 ], |
488 }], | 488 }], |
| 489 ['OS=="android"', { |
| 490 'dependencies': [ |
| 491 '../media/media.gyp:media', |
| 492 ], |
| 493 'sources': [ |
| 494 'common/gpu/media/android_video_decode_accelerator.cc', |
| 495 'common/gpu/media/android_video_decode_accelerator.h', |
| 496 'common/gpu/media/gles2_external_texture_copier.cc', |
| 497 'common/gpu/media/gles2_external_texture_copier.h', |
| 498 ], |
| 499 'include_dirs': [ |
| 500 '<(DEPTH)/third_party/angle/include', |
| 501 ], |
| 502 'link_settings': { |
| 503 'libraries': [ |
| 504 '-lEGL', |
| 505 '-lGLESv2', |
| 506 ], |
| 507 }, |
| 508 }], |
489 ['target_arch=="arm" and chromeos == 1', { | 509 ['target_arch=="arm" and chromeos == 1', { |
490 'dependencies': [ | 510 'dependencies': [ |
491 '../media/media.gyp:media', | 511 '../media/media.gyp:media', |
492 ], | 512 ], |
493 'sources': [ | 513 'sources': [ |
494 'common/gpu/media/exynos_video_decode_accelerator.cc', | 514 'common/gpu/media/exynos_video_decode_accelerator.cc', |
495 'common/gpu/media/exynos_video_decode_accelerator.h', | 515 'common/gpu/media/exynos_video_decode_accelerator.h', |
496 'common/gpu/media/gles2_texture_to_egl_image_translator.cc', | 516 'common/gpu/media/gles2_texture_to_egl_image_translator.cc', |
497 'common/gpu/media/gles2_texture_to_egl_image_translator.h', | 517 'common/gpu/media/gles2_texture_to_egl_image_translator.h', |
498 'common/gpu/media/omx_video_decode_accelerator.cc', | 518 'common/gpu/media/omx_video_decode_accelerator.cc', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 595 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
576 '<(output)', | 596 '<(output)', |
577 '<(PRODUCT_DIR)', | 597 '<(PRODUCT_DIR)', |
578 ], | 598 ], |
579 'msvs_cygwin_shell': 1, | 599 'msvs_cygwin_shell': 1, |
580 }, | 600 }, |
581 ] | 601 ] |
582 }], | 602 }], |
583 ], | 603 ], |
584 } | 604 } |
OLD | NEW |