如何构建内容模块

Pij*_*usn 3 build chromium

我已经下载了Chromium的源代码,并且有所谓的内容模块+ content_shell(这是使用内容模块构建的基本浏览器).我想建立这两个.我找不到任何有用的文件.我看到一些gypi文件,但不知道如何使用它们.

PS有没有我只能下载Content API + Content Shell的软件包?这样他们俩绝对会与其他人分开吗?

小智 13

您需要遵循以下构建说明之一:http://dev.chromium.org/developers/how-tos/build-instructions-windowshttp://code.google.com/p/chromium/wiki/MacBuildInstructionshttp://code.google.com/p/chromium/wiki/LinuxBuildInstructions.一旦您知道如何在适当的平台上构建,您要构建的目标就是"content_shell".例如,在Linux上,要在调试模式下构建content_shell,你可以像这样使用忍者:

ninja -C out/Debug -j10 content_shell
Run Code Online (Sandbox Code Playgroud)