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

Unified Diff: third_party/WebKit/Source/config.gni

Issue 1595813002: GN(android) Fix oscilloscope crash in webaudio on arm64 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update comment Created 4 years, 11 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: third_party/WebKit/Source/config.gni
diff --git a/third_party/WebKit/Source/config.gni b/third_party/WebKit/Source/config.gni
index 6d584ff36caa39d008ddeac66db4907c216d4453..9f21023230f848b48975e91ed58cdf2b4a5aff87 100644
--- a/third_party/WebKit/Source/config.gni
+++ b/third_party/WebKit/Source/config.gni
@@ -25,15 +25,13 @@ declare_args() {
blink_asserts_off_in_release = false
}
-# Whether Android ARM or x86 build uses OpenMAX DL FFT. 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.
+# Whether Android build uses OpenMAX DL FFT. Currently supported only on
+# ARMv7+, ARM64, x86 or x64 without webview. Also enables WebAudio support.
+# Whether WebAudio is actually available depends on runtime settings and flags.
use_openmax_dl_fft =
- is_android &&
- (current_cpu == "x86" || current_cpu == "x64" ||
- (current_cpu == "arm" && arm_version >= 7) || current_cpu == "mipsel")
+ is_android && (current_cpu == "x86" || current_cpu == "x64" ||
+ (current_cpu == "arm" && arm_version >= 7) ||
+ current_cpu == "arm64" || current_cpu == "mipsel")
use_webaudio_ffmpeg = !is_mac && !is_android
« 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