第一步:配置安装depot_tools
sudo apt install git
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=depot_tools path:$PATH:
第二步:下载源码
方法1:
时间长
fetch chromium
方法2:
只下载最新的代码,没有历史记录
fetch --nohooks --no-history chromium
注:如果在下载过程中发生了异常(比较常见的是断网,因为vpn),可以在/chromium目录下执行:
gclient sync --nohooks --no-history有时可以继续同步,有时不行
方法3:
快速下载代码包(tarball)
http://chromium-browser-source.commondatastorage.googleapis.com/chromium_tarball.html
方法4:
分支的下载请参考