编译环境:
- 操作系统:MacOS10.15.7
- 编译器:XCode12.4
下面还需要一些准备工作:
1. 安装python2.7.16,2.7版本应该都可以
然后在终端中输入:python –version1
Python 2.7.16
检测安装的版本号,以及是否安装成功。
2. 创建文件夹目录1
2
3/Users/calm2012/code/cef/87/automate
/Users/calm2012/code/cef/87/chromium_git
/Users/calm2012/code/cef/87/depot_tools
3. 下载depot_tools。1
2cd /Users/calm2012/code
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
4. 添加环境变量。1
export PATH=/Users/calm2012/code/cef/87/depot_tools:$PATH
5. 下载automate-git。1
2cd /Users/calm2012/code
curl -O https://bitbucket.org/chromiumembedded/cef/raw/master/tools/automate/automate-git.py
6. 编译配置项设置。1
2cd /Users/calm2012/code/cef/87
python automate/automate-git.py --download-dir=/Users/calm2012/code/cef/87/chromium_git --depot-tools-dir=/Users/calm2012/code/cef/87/depot_tools --branch=4280 --force-clean --no-distrib --no-build --x64-buildy
automate-git.py 参数介绍
–branch 表示你要下载哪个版本的代码,CEF 每个版本都有固定的分支,你去 CEF 项目页查看分支名称指定即可,这里我们编译 2019年9月份目前最新的版本 3809。
–no-build 表示只下载代码而不编译,这里只为下载代码,我们还要修改支持多媒体的参数,所以不进行编译
–no-distrib 不执行打包项目,这里只为下载代码,我们还要修改支持多媒体的参数,所以不进行打包
–force-clean 如果你曾经执行过这个脚本,可能会出错,则加上这个参数,它执行清理残留文件(你也可以手动在 chromium 源码目录执行 git clean -xdf 来清理目录中的多余内容)。
automate-git.py 的其他参数可以手动执行 python automate-git.py –help 来查看
如果出现:AttributeError: ‘NoUsableRevError’ object has no attribute ‘message’ 请尝试以下操作。的编译错误。可以按照下边操作
打开gclient_scm.py,然后注释下面行
#logging.warning(
# "Couldn't find usable revision, will retrying to update instead: %s",
# e.message)
7. 音视频编码格式配置
修改配置文件/Users/calm2012/code/cef/87/chromium_git/chromium/src/third_party/ffmpeg/chromium/config/Chrome/mac/x64/config.h1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59cd /Users/calm2012/code
然后执行:
export GN_DEFINES="ffmpeg_branding=Chrome proprietary_codecs=true is_official_build=true"
8. 创建Ninja工程文件。1
2
3cd /Users/calm2012/code/cef/87/chromium_git/chromium/src/cef
// 执行脚本,生成工程文件
./cef_create_projects.sh
9. Ninja Release1编译。1
2cd /Users/calm2012/code/cef/87/chromium_git/chromium/src
ninja -C out/Release_GN_x64 cef
10. 编译 sandbox。1
2cd /Users/calm2012/code/cef/87/chromium_git/chromium/src
ninja -C out/Release_GN_x64_sandbox cef_sandbox
11. 打包头文件、binary等。1
2
3
4
5
6编译完 Release 版本后开始打包操作:
cd /Users/calm2012/code/cef/87/chromium_git/chromium/src/cef/tools
// --minimal 表示仅发布 Release 版本,不包含 Debug
./make_distrib.sh --ninja-build --x64-build --minimal
在 /Users/calm2012/code/cef/87/chromium_git/chromium/src/cef/binary_distrib 目录下就可以看到打包过的文件了。
注意:编译遇到 libtool: error: unrecognised option: ‘-static’ 错误可以尝试:
brew unlink libtool
rm -rf /usr/local/bin/libtool
which libtool