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

Unified Diff: build/common.gypi

Issue 14017004: Disable webaudio support on Android ARM by turning off use_openmax_dl_fft. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 8fb2a06c1730b05a8aee89c35c22a088833a3daa..734e86d0df305373e687dbeedccb7e7316b20d55 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,
}],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698