[Android WebView] Enable WebAudio API.

BUG=368240

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@267845 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
benm@chromium.org 2014-05-02 17:36:22 +00:00
Родитель 0405715063
Коммит ae104a0b3e
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -853,12 +853,12 @@
'test_isolation_mode%': 'noop',
}],
# Whether Android ARM or x86 build uses OpenMAX DL FFT.
['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target_arch=="ia32" or target_arch=="x64") and android_webview_build==0', {
# Currently only supported on Android ARMv7+, ia32 or x64
# without webview. When enabled, this will also enable
# WebAudio support on Android ARM, ia32 and x64. Default is
# enabled. Whether WebAudio is actually available depends
# on runtime settings and flags.
['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target_arch=="ia32" or target_arch=="x64")', {
# Currently only supported on Android ARMv7+, ia32 or x64.
# When enabled, this will also enable WebAudio support on
# Android ARM, ia32 and x64. Default is enabled. Whether
# WebAudio is actually available depends on runtime settings
# and flags.
'use_openmax_dl_fft%': 1,
}, {
'use_openmax_dl_fft%': 0,