| Index: build/config/features.gni
|
| diff --git a/build/config/features.gni b/build/config/features.gni
|
| index e1c8847f25bbde7175f77954ce27b9fb4f138f5d..1850e19d4e9add904cd1dd83598b4451a2c0de43 100644
|
| --- a/build/config/features.gni
|
| +++ b/build/config/features.gni
|
| @@ -29,9 +29,10 @@ declare_args() {
|
| enable_pdf = !is_android && !is_ios && !is_chromecast
|
|
|
| # Enables Native Client support.
|
| + # Temporarily disable nacl on arm64 linux to get rid of compilation errors.
|
| # TODO(mcgrathr): When mipsel-nacl-clang is available, drop the exclusion.
|
| - enable_nacl =
|
| - !is_ios && !is_android && !is_chromecast && current_cpu != "mipsel"
|
| + enable_nacl = !is_ios && !is_android && !is_chromecast &&
|
| + current_cpu != "mipsel" && !(is_linux && target_cpu == "arm64")
|
|
|
| # If debug_devtools is set to true, JavaScript files for DevTools are stored
|
| # as is and loaded from disk. Otherwise, a concatenated file is stored in
|
|
|