bromite-buildtools/prepare-build.sh

66 lines
1.9 KiB
Bash
Raw Normal View History

2021-05-26 18:24:44 +05:30
#!/bin/bash
RED='\033[0;31m'
NC='\033[0m' # No Color
2021-05-26 18:34:35 +05:30
#cd ~
2021-05-26 18:24:44 +05:30
sudo apt-get install python
sudo apt-get install wiggle
echo -e ${RED} -------- download bromite repo ${NC}
git clone https://github.com/bromite/bromite
2021-05-26 18:34:35 +05:30
cd bromite
2021-05-26 18:24:44 +05:30
git fetch
git pull
2021-05-26 18:34:35 +05:30
VERSION=$( cat ./build/RELEASE )
2021-05-26 18:24:44 +05:30
echo -e ${RED} -------- lastest version is: $VERSION ${NC}
2021-05-26 18:34:35 +05:30
cd ..
2021-05-26 18:24:44 +05:30
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
2021-05-26 18:34:35 +05:30
PATH=./chromium/src/third_party/llvm-build/Release+Asserts/bin:./depot_tools/:/usr/local/go/bin:$PATH
2021-05-26 18:24:44 +05:30
echo -e ${RED} -------- download chromium repo ${NC}
2021-05-26 18:34:35 +05:30
mkdir ./chromium
cd ./chromium
2021-05-26 18:24:44 +05:30
gclient root
2021-05-26 18:34:35 +05:30
mkdir ./src
cd ./src
2021-05-26 18:24:44 +05:30
git init
git remote add origin https://chromium.googlesource.com/chromium/src.git
git fetch --depth 2 https://chromium.googlesource.com/chromium/src.git +refs/tags/$VERSION:chromium_$VERSION
git checkout $VERSION
VERSION_SHA=$( git show-ref -s $VERSION | head -n1 )
2021-05-26 18:34:35 +05:30
echo >../.gclient "solutions = ["
echo >>../.gclient " { \"name\" : 'src',"
echo >>../.gclient " \"url\" : 'https://chromium.googlesource.com/chromium/src.git@$VERSION_SHA',"
echo >>../.gclient " \"deps_file\" : 'DEPS',"
echo >>../.gclient " \"managed\" : True,"
echo >>../.gclient " \"custom_deps\" : {"
echo >>../.gclient " },"
echo >>../.gclient " \"custom_vars\": {},"
echo >>../.gclient " },"
echo >>../.gclient "]"
echo >>../.gclient "target_os=['android']"
2021-05-26 18:24:44 +05:30
#echo -e ${RED} -------- sync other chromium repos ${NC}
#gclient metrics --opt-out
2021-05-26 18:34:35 +05:30
git submodule foreach git config -f ./.git/config submodule.$name.ignore all
2021-05-26 18:24:44 +05:30
git config --add remote.origin.fetch '+refs/tags/*:refs/tags/*'
#git config diff.ignoreSubmodules all
gclient sync -D --no-history --nohooks --output-json=gclient-sync.log
git config user.email "you@example.com"
git config user.name "Your Name"
# remove origin for chromium
git remote remove origin