mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
Add files via upload
This commit is contained in:
parent
d3e95634ff
commit
cf80595c02
2 changed files with 31 additions and 0 deletions
12
setup.sh
Normal file
12
setup.sh
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
cp -r -v build/. $HOME/chromium/src/build/ &&
|
||||
cp -r -v chrome/. $HOME/chromium/src/chrome/ &&
|
||||
cp -r -v content/. $HOME/chromium/src/content/ &&
|
||||
cp -r -v media/. $HOME/chromium/src/media/ &&
|
||||
cp -r -v ui/. $HOME/chromium/src/ui/ &&
|
||||
cp -r -v v8/. $HOME/chromium/src/v8/ &&
|
||||
|
||||
cd $HOME/chromium/src &&
|
||||
|
||||
exit 0
|
19
trunk.sh
Normal file
19
trunk.sh
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd $HOME/chromium/src &&
|
||||
|
||||
git checkout -f origin/main &&
|
||||
|
||||
git rebase-update &&
|
||||
|
||||
git fetch --tags &&
|
||||
|
||||
gclient sync -D &&
|
||||
|
||||
gclient sync --with_branch_heads --with_tags &&
|
||||
|
||||
gclient runhooks &&
|
||||
|
||||
python tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue