| 1 | |
| 2 | WebKit is basically made up of the following: |
| 3 | |
| 4 | 1. '''JavaScriptCore''': The JavaScript engine. This also includes the WTF |
| 5 | librbrary, which contains various utilities. This is completely cross- |
| 6 | platform (though there are various platform-specific JIT backends.) |
| 7 | This can be used as a separate entity to the rest of WebKit. |
| 8 | |
| 9 | 2. '''WebCore:''' this is where most of the magic lives. All rendering |
| 10 | logic, SVG support, transforms, network support, etc. Are here. |
| 11 | |
| 12 | Each platform has specific logic here. Look in WebCore platform for |
| 13 | the OS-specific and rendering (Skia, CG, Cairo) backends. |
| 14 | |
| 15 | 3. '''WebKit''': the front-end layer used by applications. Each GUI platform |
| 16 | (windows, Cocoa, Gtk+, Qt) provides a different implementation of |
| 17 | this. Generally, the goal is to make this a client to the WebCore |
| 18 | layer, basically just 'shimming' WebCore to the specific Os/Platform |
| 19 | that will be using WebKit. |
| 20 | |
| 21 | The remaining projects are autogenerated bindings to the DOM, etc. |
| 22 | |
| 23 | (Taken from [https://lists.webkit.org/pipermail/webkit-help/2009-July/000010.html Brent's email] to webkit-help) |