Commit c33ce310 authored by dcheng@chromium.org's avatar dcheng@chromium.org

Revert 244098 "Fix chromeos=1 so Pulse is preferred when use_cra..."

Speculative revert to fix link errors on ChromiumOS amd64 BuildPackages,
complaining about undefined reference to 'alsa_util::BitsToFormat(int)'.

> Fix chromeos=1 so Pulse is preferred when use_cras=0.
> 
> Merges the settings for use_alsa and use_pulseaudio for selection
> based on use_cras.
> 
> BUG=none
> TEST=Pulse is available along with ALSA when chromeos=1.
> 
> Review URL: https://codereview.chromium.org/132773002

TBR=dalecurtis@chromium.org

Review URL: https://codereview.chromium.org/131063006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244100 0039d316-1c4b-4281-b951-d872f2087c98
parent 2eccbed2
......@@ -21,12 +21,15 @@
'media_use_ffmpeg%': 1,
'media_use_libvpx%': 1,
}],
# Enable ALSA and Pulse for runtime selection.
['(OS=="linux" or OS=="freebsd" or OS=="solaris") and embedded!=1 and use_cras==0', {
# ALSA usage.
['(OS=="linux" or OS=="freebsd" or OS=="solaris") and embedded!=1', {
'use_alsa%': 1,
'use_pulseaudio%': 1,
}, {
'use_alsa%': 0,
}],
['os_posix==1 and OS!="mac" and OS!="android" and chromeos!=1 and embedded!=1', {
'use_pulseaudio%': 1,
}, {
'use_pulseaudio%': 0,
}],
],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment