diff options
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 8 |
1 files changed, 5 insertions, 3 deletions
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, }], |