mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
more android fixes
This commit is contained in:
parent
29e70b8aea
commit
336218c508
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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" &&
|
||||||
|
|
Loading…
Reference in a new issue