| Index: build/config/features.gni
 | 
| diff --git a/build/config/features.gni b/build/config/features.gni
 | 
| index 3811e27cfe733ec6c41fd70006015cd729ac69bf..ba69371aa71d6cb03291fde847369d3aa57af517 100644
 | 
| --- a/build/config/features.gni
 | 
| +++ b/build/config/features.gni
 | 
| @@ -74,9 +74,9 @@ enable_print_preview = !is_android
 | 
|  # currently.
 | 
|  # Do not disable seccomp_bpf anywhere without talking to
 | 
|  # security@chromium.org!
 | 
| -use_seccomp_bpf =
 | 
| -    (is_linux || is_android) && (cpu_arch == "x86" || cpu_arch == "x64" ||
 | 
| -                                 cpu_arch == "arm" || cpu_arch == "mipsel")
 | 
| +use_seccomp_bpf = (is_linux || is_android) &&
 | 
| +                  (current_cpu == "x86" || current_cpu == "x64" ||
 | 
| +                   current_cpu == "arm" || current_cpu == "mipsel")
 | 
|  
 | 
|  # Enable notifications everywhere except iOS.
 | 
|  enable_notifications = !is_ios
 | 
| 
 |