准备
系统依赖
A 64-bit Mac running 10.14+.
Xcode 11+
The OS X 10.15 SDK. Run
1
ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs
Python 2.7.16
Git 2.25.2
设置代理
设置终端代理
1 | export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7891 |
设置 boto 代理
1 | export NO_AUTH_BOTO_CONFIG=~/.boto |
1 | [Boto] |
下载源码
下载 depot_tools 工具
新建目录
1 | mkdir chromium_src && cd chromium_src |
安装 depot_tools
1 | git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git |
设置系统环境变量
1 | export PATH="$PATH:${PWD}/depot_tools" |
获取源码
开启
1 | git config --global core.precomposeUnicode true |
新建目录
1 | mkdir chromium && cd chromium |
获取代码
1 | fetch --nohooks --no-history chromium --target_os=darwin |
fetch --nohooks chromium
,不要加--no-history
。
fetch --nohooks --no-history chromium
fetch --nohooks --no-history chromium --target_os=darwin
使用 pyenv 切换 python3 和 python2 都提示 Warning: Running gclient on Python 3
。
切换目录
1 | cd src |
检查分支
1 | git fetch --tags |
拉取分支并切换
1 | git checkout -b xweb_66.0.3359.126 66.0.3359.126 |
Chrome 与 chromedriver 映射关系 https://github.com/appium/appium-chromedriver/blob/master/lib/chromedriver.js
67 使用的 macOS10.12.sdk。https://github.com/phracker/MacOSX-SDKs/releases
同步分支数据
1 | gclient sync --with_branch_heads --jobs 16 |
gclient runhooks
# 如果有提示 runhooks 成功,则不需执行。
gclient sync --force
打印日志:gclient sync –verbose –verbose –verbose
1
2 > gclient sync --force --nohooks --with_branch_heads
>
如果上面gclient sync
步骤报错需要手动下载文件,先安装 gsutil: pip install gsutil
1 | cd src |
生成 args.gn 文件
1 | gn gen --args="is_debug=false is_component_build = false symbol_level = 0" out/Release |
文件内容:out/Release/args.gn
1 | # Release |
编译 chromedriver
1 | ninja -C out/Release chromedriver |
修改代码
webview
1 | chromium/src/chrome/device_manager.cc |
命令行入参
1 | chromium/src/chrome/test/chromedriver/server/chromedriver_server.cc |