| Index: platform_tools/android/bin/android_setup.sh
|
| diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
|
| index e452d746a3f999c7bc9a741d5e1cb2232520d86e..b94d230fb53e2c1bf2a06de7cad83da2b8ef3e03 100755
|
| --- a/platform_tools/android/bin/android_setup.sh
|
| +++ b/platform_tools/android/bin/android_setup.sh
|
| @@ -97,7 +97,7 @@ setup_device() {
|
| TARGET_DEVICE=$(cat .android_config)
|
| verbose "no target device (-d), using ${TARGET_DEVICE} from most recent build"
|
| else
|
| - TARGET_DEVICE="arm_v7"
|
| + TARGET_DEVICE="arm_v7_neon"
|
| verbose "no target device (-d), using ${TARGET_DEVICE}"
|
| fi
|
| fi
|
| @@ -107,11 +107,11 @@ setup_device() {
|
| DEFINES="${DEFINES} skia_arch_type=arm arm_neon=0"
|
| ANDROID_ARCH="arm"
|
| ;;
|
| - arm_v7 | nexus_4 | nexus_5 | nexus_6 | nexus_7 | nexus_10 | xoom)
|
| + arm_v7 | xoom)
|
| DEFINES="${DEFINES} skia_arch_type=arm arm_neon_optional=1 arm_version=7"
|
| ANDROID_ARCH="arm"
|
| ;;
|
| - arm_v7_neon)
|
| + arm_v7_neon | nexus_4 | nexus_5 | nexus_6 | nexus_7 | nexus_10)
|
| DEFINES="${DEFINES} skia_arch_type=arm arm_neon=1 arm_version=7"
|
| ANDROID_ARCH="arm"
|
| ;;
|
|
|