Chromium Code Reviews| Index: build/config/android/config.gni |
| diff --git a/build/config/android/config.gni b/build/config/android/config.gni |
| index aff3b2f04f1d52fb8402c89686483d79413580c8..d6ff86a663f32d1cdb957bac91e69c4b280af467 100644 |
| --- a/build/config/android/config.gni |
| +++ b/build/config/android/config.gni |
| @@ -232,8 +232,11 @@ if (is_android) { |
| # ABI ------------------------------------------------------------------------ |
| + # Intentionally not define android_app_secondary_abi for 64-bit |
|
agrieve
2016/03/23 18:11:19
nit: "Intentionally not define" -> "Intentionally
michaelbai
2016/03/23 18:55:33
Done.
|
| + # android_app_abi, since they are not used. |
| if (current_cpu == "x86") { |
| android_app_abi = "x86" |
| + android_app_secondary_abi = "x86_64" |
| } else if (current_cpu == "arm") { |
| import("//build/config/arm.gni") |
| if (arm_version < 7) { |
| @@ -241,8 +244,10 @@ if (is_android) { |
| } else { |
| android_app_abi = "armeabi-v7a" |
| } |
| + android_app_secondary_abi = "arm64-v8a" |
| } else if (current_cpu == "mipsel") { |
| android_app_abi = "mips" |
| + android_app_secondary_abi = "mips64" |
| } else if (current_cpu == "x64") { |
| android_app_abi = "x86_64" |
| } else if (current_cpu == "arm64") { |