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

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: 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..0ebc3addafcd1dc11cda30688f2dd5566cbc3e56 100644
--- a/third_party/WebKit/Source/config.gni
+++ b/third_party/WebKit/Source/config.gni
@@ -31,9 +31,9 @@ declare_args() {
# enabled. Whether WebAudio is actually available depends on runtime settings
Raymond Toy 2016/01/16 03:12:34 Can you update these comments to say arm64 and mip
agrieve 2016/01/16 03:18:09 Done.
# 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