I try to compile an older version of chromium on Ubuntu by checking out an older version as described here: Checking out a release branch, but it then keeps staying on a higher version of Chromium.
How do I prevent this, so I can actually compile the older version of Chromium?
The commands I used were:
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH="$PATH:${HOME}/depot_tools"
mkdir ~/chromium && cd ~/chromium
fetch chromium
cd src
./build/install-build-deps.sh
gclient runhooks
git checkout -b tags/34.0.1847.9
gclient sync --with_branch_heads --with_tags
cat chrome/VERSION
gn gen out/Default
autoninja -C out/Default chrome
out/Default/chrome
And it shows Chromium 75 at 'cat chrome/VERSION', every single time instead of branch version 34.0.1847.9.