CEF全称是Chromium Embedded Framework,它是Chromium的Content API的封装库。
- CEF官网地址:https://bitbucket.org/chromiumembedded/cef
- CEF官方论坛:http://www.magpcss.org/ceforum
- CEFSharp:https://github.com/cefsharp/CefSharp
- ChromiumFX,.NET bindings for the Chromium Embedded Framework.: https://bitbucket.org/chromiumfx/chromiumfx
- Chromium Generation Your Project
- Chromium Resoures
- Chromium Content Register V8 Extension
- Chromium GYP 中文翻译
如果要编译CEF,则需要同步编译Chromium的最新源码
- Chromium Build Guid
- Chromium for developer
- windows build instructions
- depot_tool的官方地址被墙(一种深深的怨恨),可以在github 里搜索depot tool 关键字搜索相关的克隆项目,例如:
- google 官方开发的vs插件,专门为chromium源码提供的。vs-chromium
- 同样的原因,depot_tool里内置的chromium的源码下载地址放在googleapi.com上,也是被墙的。下面这个地址里有chromium的所有项目的git地址:
-
geckoview Android offers a built-in WebView, which applications can hook into in order to display web pages within the context of their app. However, Android’s WebView is not really intended for building browsers, and hence, many advanced Web APIs are disabled. Furthermore, it is also a moving target: different phones might have different versions of WebView, all of which your app has to support.
That is where GeckoView comes in. GeckoView is:
- Full-featured: GeckoView is designed to expose the entire power of the Web to applications, and all that through a straightforward API. Think of it as harnessing the full power of Gecko (the engine that powers Firefox), while its API is WebView-like and easy to use.
- Suited for apps and browsers: GeckoView is particularly suited for building mobile browsers, but it can be embedded as a web engine component in any kind of app.
- Self-Contained: Because GeckoView is a standalone library that you bundle with your application, you can be confident that the code you test is the code that will actually run.
- Standards Compliant: Like Firefox, GeckoView offers excellent support for modern Web standards.