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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # Override to dynamically link the cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
9 'use_cras%': 0, | 9 'use_cras%': 0, |
10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 'link_settings': { | 567 'link_settings': { |
568 'libraries': [ | 568 'libraries': [ |
569 '-lOpenSLES', | 569 '-lOpenSLES', |
570 ], | 570 ], |
571 }, | 571 }, |
572 'include_dirs': [ | 572 'include_dirs': [ |
573 '<(SHARED_INTERMEDIATE_DIR)/media', | 573 '<(SHARED_INTERMEDIATE_DIR)/media', |
574 ], | 574 ], |
575 'dependencies': [ | 575 'dependencies': [ |
576 'media_android_jni_headers', | 576 'media_android_jni_headers', |
| 577 'media_java', |
577 'player_android', | 578 'player_android', |
578 'video_capture_android_jni_headers', | 579 'video_capture_android_jni_headers', |
579 ], | 580 ], |
580 }], | 581 }], |
581 # A simple WebM encoder for animated avatars on ChromeOS. | 582 # A simple WebM encoder for animated avatars on ChromeOS. |
582 ['chromeos==1', { | 583 ['chromeos==1', { |
583 'dependencies': [ | 584 'dependencies': [ |
584 '../third_party/libvpx/libvpx.gyp:libvpx', | 585 '../third_party/libvpx/libvpx.gyp:libvpx', |
585 '../third_party/libyuv/libyuv.gyp:libyuv', | 586 '../third_party/libyuv/libyuv.gyp:libyuv', |
586 ], | 587 ], |
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1663 ], | 1664 ], |
1664 'sources': [ | 1665 'sources': [ |
1665 'base/simd/sinc_resampler_sse.cc', | 1666 'base/simd/sinc_resampler_sse.cc', |
1666 'base/simd/vector_math_sse.cc', | 1667 'base/simd/vector_math_sse.cc', |
1667 ], | 1668 ], |
1668 }, # end of target media_sse | 1669 }, # end of target media_sse |
1669 ], | 1670 ], |
1670 }], | 1671 }], |
1671 ], | 1672 ], |
1672 } | 1673 } |
OLD | NEW |