diff --git a/arm/android/android_arm32_args.gn b/arm/android/android_arm32_args.gn index f6d83cef..86c4f638 100644 --- a/arm/android/android_arm32_args.gn +++ b/arm/android/android_arm32_args.gn @@ -10,9 +10,9 @@ arm_arch = "armv7-a" arm_tune = "generic-armv7-a" # arm_float_abi = "softfp" arm_use_thumb = true -arm_use_neon = true +arm_use_neon = false arm_optionally_use_neon = false -arm_fpu = "neon" +arm_fpu = "softfp" is_official_build = true is_high_end_android = false use_relr_relocations = false @@ -85,7 +85,7 @@ enable_hangout_services_extension = true rtc_use_h264 = false rtc_prefer_fixed_point = true rtc_include_ilbc = true -# rtc_build_with_neon = false +rtc_build_with_neon = false rtc_build_examples = false rtc_enable_avx2 = false enable_vr = true diff --git a/arm/android/android_arm64_args.gn b/arm/android/android_arm64_args.gn index 286fda5c..2fa7f346 100644 --- a/arm/android/android_arm64_args.gn +++ b/arm/android/android_arm64_args.gn @@ -11,7 +11,7 @@ arm_tune = "generic-armv8-a" arm_float_abi = "hard" arm_use_thumb = true arm_use_neon = true -arm_optionally_use_neon = false +arm_optionally_use_neon = true arm_fpu = "neon" is_official_build = true is_high_end_android = true diff --git a/build_android.sh b/build_android.sh index 8d1add3a..a9ed4849 100755 --- a/build_android.sh +++ b/build_android.sh @@ -55,7 +55,7 @@ buildARM32 () { export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " && cd ${CR_SRC_DIR} && - autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_32_apk -j${cr_build_jobs} && + autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_apk -j${cr_build_jobs} && cat ~/thorium/logos/thorium_logo_ascii_art.txt && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" && @@ -97,7 +97,7 @@ buildX86 () { export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " && cd ${CR_SRC_DIR} && - autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_32_apk -j${cr_build_jobs} && + autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_apk -j${cr_build_jobs} && cat ~/thorium/logos/thorium_logo_ascii_art.txt && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" &&