From 6558fd4f37faa9bfa62c8c060c5c70bf65b12204 Mon Sep 17 00:00:00 2001 From: "rtoy@google.com" Date: Wed, 17 Apr 2013 18:51:38 +0000 Subject: Disable webaudio support on Android ARM by turning off use_openmax_dl_fft. BUG= Review URL: https://codereview.chromium.org/14017004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194645 0039d316-1c4b-4281-b951-d872f2087c98 --- build/common.gypi | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'build') diff --git a/build/common.gypi b/build/common.gypi index 8fb2a06..734e86d 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -641,10 +641,12 @@ }, { 'test_isolation_mode%': 'noop', }], - # Whether Android ARM build uses OpenMAX DL FFT. Default is - # yes. This will also enable WebAudio on Android ARM. + # Whether Android ARM build uses OpenMAX DL FFT. ['OS=="android" and target_arch=="arm" and android_webview_build==0', { - 'use_openmax_dl_fft%': 1, + # Currently only supported on Android ARM, without webview. + # When enabled, this will also enable WebAudio on Android + # ARM. Default is disabled. + 'use_openmax_dl_fft%': 0, }, { 'use_openmax_dl_fft%': 0, }], -- cgit v1.1