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

Side by Side Diff: media/media.gyp

Issue 14641006: Support EAC3 (Dolby Digital Plus) codec (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Aaron's comments Created 7 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 '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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 'dependencies': [ 874 'dependencies': [
875 '../build/linux/system.gyp:gtk', 875 '../build/linux/system.gyp:gtk',
876 ], 876 ],
877 }], 877 }],
878 # ios check is necessary due to http://crbug.com/172682. 878 # ios check is necessary due to http://crbug.com/172682.
879 ['OS != "ios" and (target_arch == "ia32" or target_arch == "x64")', { 879 ['OS != "ios" and (target_arch == "ia32" or target_arch == "x64")', {
880 'dependencies': [ 880 'dependencies': [
881 'media_sse', 881 'media_sse',
882 ], 882 ],
883 }], 883 }],
884 ['google_tv == 1', {
885 'defines': [
886 'ENABLE_EAC3_PLAYBACK',
887 ],
888 }],
884 ], 889 ],
885 'target_conditions': [ 890 'target_conditions': [
886 ['OS == "ios"', { 891 ['OS == "ios"', {
887 'sources/': [ 892 'sources/': [
888 # Pull in specific Mac files for iOS (which have been filtered out 893 # Pull in specific Mac files for iOS (which have been filtered out
889 # by file name rules). 894 # by file name rules).
890 ['include', '^audio/mac/audio_input_mac\\.'], 895 ['include', '^audio/mac/audio_input_mac\\.'],
891 ], 896 ],
892 }], 897 }],
893 ], 898 ],
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 ], 1721 ],
1717 'sources': [ 1722 'sources': [
1718 'base/simd/sinc_resampler_sse.cc', 1723 'base/simd/sinc_resampler_sse.cc',
1719 'base/simd/vector_math_sse.cc', 1724 'base/simd/vector_math_sse.cc',
1720 ], 1725 ],
1721 }, # end of target media_sse 1726 }, # end of target media_sse
1722 ], 1727 ],
1723 }], 1728 }],
1724 ], 1729 ],
1725 } 1730 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698