windows下编译chromium

章高爽
2023-12-01


0 要求有可以翻墙的vpn。

1 下载depot_tools,解压到指定目录(最好直接解压到指定目录,避免copy遗漏文件),比如:d:\depot_tools
2 把d:\depot_tools加入系统环境变量path的最前面。(如果加在path路径后面,要确保你path内部没有git,python等路径。)
3 更新depot_tools。重新开启一个cmd窗口,执行两次:gclient --version
4 获取chromium源代码,进入下载目录,比如:d:\git\chromium
  在cmd窗口中:
  cd d:\git\chromium
  
  # 产生.gclient文件
  gclient config https://chromium.googlesource.com/chromium/src.git
  
  # 设置环境变量
  set GYP_MSVS_VERSION=2013
  set GYP_GENERATORS=msvs-ninja,ninja
  set GYP_DEFINES=component=shared_library
  set DEPOT_TOOLS_WIN_TOOLCHAIN=0
  # 在当前窗口运行,运行如下内容耐性等待,看网络条件2--40小时
  gclient sync --nohooks --with_branch_heads --with_tags --output-json="log.json"
  
  #如果发生错误,注释掉depot_tools\python276_bin\Lib\mimetypes.py文件的248--251行内容
                #

 类似资料: