/Prelude

An introduction to Chromium source.

BSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Prelude

Prelude contains a subset of Chromium source. It builds low-level components including but not limited to:

Category Library
Framework base.dll
IPC support ipc.dll, mojo_core.dll, service.dll
Rendering gles2.dll, skia.dll
UI aura.dll, views.dll

The excluded components are mostly browser related (e.g., //content and Blink) or Chrome OS specific (e.g., //ash). Because the goal is to make Prelude a compact codebase that's useful for developing general purpose applications. That being said, v8 Javascript engine is included as a bonus.

Prelude also provides examples on how to use Chromium code. Please refer to this github page for details.