| Index: build/config/android/config.gni
|
| diff --git a/build/config/android/config.gni b/build/config/android/config.gni
|
| index fdabcb5c6bbda73826b62668243d7f80cf8a5c85..33469666d338c740db46b93a94886c734d29acbd 100644
|
| --- a/build/config/android/config.gni
|
| +++ b/build/config/android/config.gni
|
| @@ -21,7 +21,7 @@ if (is_android) {
|
|
|
| # Defines the name the Android build gives to the current host CPU
|
| # architecture, which is different than the names GN uses.
|
| - if ((host_cpu == "x64") || (host_cpu == "x86")) {
|
| + if (host_cpu == "x64" || host_cpu == "x86") {
|
| android_host_arch = "x86_64"
|
| } else {
|
| assert(false, "Need Android toolchain support for your build CPU arch.")
|
|
|