more android fixes

This commit is contained in:
Alexander Frick 2024-04-24 03:41:06 -05:00
parent 29e70b8aea
commit 336218c508
3 changed files with 6 additions and 6 deletions

View file

@ -10,9 +10,9 @@ arm_arch = "armv7-a"
arm_tune = "generic-armv7-a" arm_tune = "generic-armv7-a"
# arm_float_abi = "softfp" # arm_float_abi = "softfp"
arm_use_thumb = true arm_use_thumb = true
arm_use_neon = true arm_use_neon = false
arm_optionally_use_neon = false arm_optionally_use_neon = false
arm_fpu = "neon" arm_fpu = "softfp"
is_official_build = true is_official_build = true
is_high_end_android = false is_high_end_android = false
use_relr_relocations = false use_relr_relocations = false
@ -85,7 +85,7 @@ enable_hangout_services_extension = true
rtc_use_h264 = false rtc_use_h264 = false
rtc_prefer_fixed_point = true rtc_prefer_fixed_point = true
rtc_include_ilbc = true rtc_include_ilbc = true
# rtc_build_with_neon = false rtc_build_with_neon = false
rtc_build_examples = false rtc_build_examples = false
rtc_enable_avx2 = false rtc_enable_avx2 = false
enable_vr = true enable_vr = true

View file

@ -11,7 +11,7 @@ arm_tune = "generic-armv8-a"
arm_float_abi = "hard" arm_float_abi = "hard"
arm_use_thumb = true arm_use_thumb = true
arm_use_neon = true arm_use_neon = true
arm_optionally_use_neon = false arm_optionally_use_neon = true
arm_fpu = "neon" arm_fpu = "neon"
is_official_build = true is_official_build = true
is_high_end_android = true is_high_end_android = true

View file

@ -55,7 +55,7 @@ buildARM32 () {
export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " && export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " &&
cd ${CR_SRC_DIR} && 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 && 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}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" && 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. ] " && export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " &&
cd ${CR_SRC_DIR} && 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 && 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}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" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" &&