OLD | NEW |
1 This is the chromium compositor implementation. Currently it's in state of | 1 This is the chromium compositor implementation. |
2 transition from the WebKit repository to chromium, so there are only stubs | |
3 here that are not compiled in by default. | |
4 | |
5 To try this out, do the following: | |
6 | |
7 0.) Run the 'copyfiles.py' script in this directory to sync the cc files from | |
8 their current location in WebKit into this directory. | |
9 1.) Set the gyp variable 'use_libcc_for_compositor=1' and run gyp: | |
10 ./build/gyp_chromium -Duse_libcc_for_compositor=1 | |
11 2.) Build the 'cc' target to build just the compositor library, or build | |
12 'cc_unittests' for the unit tests. | |
13 | 2 |
14 Notes about the component=shared_library build: | 3 Notes about the component=shared_library build: |
15 Because the compositor currently depends on non-exported symbols from inside | 4 Because the compositor currently depends on non-exported symbols from inside |
16 WebKit, in the shared library build the cc library links into WebKit.dll. | 5 WebKit, in the shared library build the cc library links into WebKit.dll. |
17 The unit tests don't currently work at all in the component build. | 6 The unit tests don't currently work at all in the component build. |
OLD | NEW |