2013-02-28 17:47:47 +04:00
|
|
|
# libchromiumcontent
|
|
|
|
|
|
|
|
A single, shared library that includes the [Chromium Content
|
|
|
|
module](http://www.chromium.org/developers/content-module) and all its
|
|
|
|
dependencies (e.g., WebKit, V8, etc.).
|
|
|
|
|
|
|
|
## Using it in your app
|
|
|
|
|
|
|
|
TODO
|
|
|
|
|
|
|
|
## Development
|
|
|
|
|
2013-05-16 16:39:40 +04:00
|
|
|
### Prerequisites
|
|
|
|
|
|
|
|
* Python 2.7
|
2014-07-29 01:03:55 +04:00
|
|
|
|
|
|
|
#### Mac
|
|
|
|
|
|
|
|
* Xcode 5.1
|
|
|
|
|
|
|
|
#### Windows
|
|
|
|
|
|
|
|
* Visual Studio 2013 Professional Update 2
|
|
|
|
|
|
|
|
#### Linux
|
2013-05-16 16:39:40 +04:00
|
|
|
|
2013-02-28 17:47:47 +04:00
|
|
|
### One-time setup
|
|
|
|
|
|
|
|
$ script/bootstrap
|
|
|
|
|
|
|
|
### Building
|
|
|
|
|
|
|
|
$ script/build
|
|
|
|
|
|
|
|
### Updating project files
|
|
|
|
|
2013-07-02 01:00:38 +04:00
|
|
|
If you change `VERSION` to point to a different Chromium release, or modify
|
2013-02-28 17:47:47 +04:00
|
|
|
`chromiumcontent.gyp{,i}`, you should run:
|
|
|
|
|
|
|
|
$ script/update
|
|
|
|
|
|
|
|
This will regenerate all the project files. Then you can build again.
|