Commit 04f8a3bb authored by Gordana.Cmiljanovic's avatar Gordana.Cmiljanovic Committed by Commit bot

MIPSEL supports seccomp_bpf so use it with GN build as well

BUG=
TEST=Compile 'chrome' for MIPSEL Linux

Review URL: https://codereview.chromium.org/795053004

Cr-Commit-Position: refs/heads/master@{#308335}
parent 3bb044b8
...@@ -74,8 +74,9 @@ enable_print_preview = !is_android ...@@ -74,8 +74,9 @@ enable_print_preview = !is_android
# currently. # currently.
# Do not disable seccomp_bpf anywhere without talking to # Do not disable seccomp_bpf anywhere without talking to
# security@chromium.org! # security@chromium.org!
use_seccomp_bpf = (is_linux || is_android) && use_seccomp_bpf =
(cpu_arch == "x86" || cpu_arch == "x64" || cpu_arch == "arm") (is_linux || is_android) && (cpu_arch == "x86" || cpu_arch == "x64" ||
cpu_arch == "arm" || cpu_arch == "mipsel")
# Enable notifications everywhere except iOS. # Enable notifications everywhere except iOS.
enable_notifications = !is_ios enable_notifications = !is_ios
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment