mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 19:37:30 -03:00
Move chrome-devtools to thorium-devtools and refactor
This commit is contained in:
parent
87039fe8ca
commit
624d2b5b42
1 changed files with 12 additions and 11 deletions
23
setup.sh
23
setup.sh
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2022 Alex313031
|
||||
# Copyright (c) 2022 Alex313031.
|
||||
|
||||
YEL='\033[1;33m' # Yellow
|
||||
|
||||
|
@ -33,6 +33,17 @@ printf "${YEL}Done!\n" &&
|
|||
printf "\n" &&
|
||||
|
||||
printf "${YEL}Setting NINJA_SUMMARIZE_BUILD=1 and aliases to download the PGO Profiles for supported targets, and the gsync alias.\n" &&
|
||||
|
||||
export NINJA_SUMMARIZE_BUILD=1 &&
|
||||
|
||||
alias gsync='gclient sync --with_branch_heads --with_tags -f -R -D' &&
|
||||
|
||||
alias pgo='python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
alias pgow='python3 tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
alias pgom='python3 tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
printf "\n" &&
|
||||
|
||||
printf "${YEL}Dropping you to ~/chromium/src.\n" &&
|
||||
|
@ -47,14 +58,4 @@ tput sgr0 &&
|
|||
|
||||
cd $HOME/chromium/src &&
|
||||
|
||||
export NINJA_SUMMARIZE_BUILD=1 &&
|
||||
|
||||
alias gsync='gclient sync --with_branch_heads --with_tags -f -R -D' &&
|
||||
|
||||
alias pgo='python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
alias pgow='python3 tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
alias pgom='python3 tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in a new issue