i need to build an old version of Chromium for Android, version number 60. I'm following below steps:
- git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
- export PATH="$PATH:/path/to/depot_tools"
- mkdir ~/chromium && cd ~/chromium
- fetch --nohooks --no-history android
- git fetch https://chromium.googlesource.com/chromium/src.git +refs/tags/60.0.3112.116:chromium_60.0.3112.116 --depth 1
- gclient sync --with_branch_heads --with_tags
The recipe is reported here.
Last step fail with below error:
Syncing projects: 80% (21/26) src/third_party/cld_2/src
src/media/cdm/api (ERROR) ---------------------------------------- [0:00:00] Started. ---------------------------------------- Error: Command 'git checkout --quiet 46eebfa522b06c1f0b52b4233caa56793badf112' returned non-zero exit status 128 in /root/chromium/src/media/cdm/api fatal: reference is not a tree: 46eebfa522b06c1f0b52b4233caa56793badf112
Where 46eebfa522b06c1f0b52b4233caa56793badf112 is related to this commit on chromium / chromium / cdm.
Do you have some experiences/ideas about it?
Thank you, best regards