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 |