# libchromiumcontent **Repository Path**: dalex/libchromiumcontent ## Basic Information - **Project Name**: libchromiumcontent - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-07-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # libchromiumcontent Automatically builds and provides prebuilt binaries of the [Chromium Content module](http://www.chromium.org/developers/content-module) and all its dependencies (e.g., Blink, V8, etc.). ## Development ### Prerequisites * [Linux](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions_prerequisites.md) * [Mac](https://chromium.googlesource.com/chromium/src/+/master/docs/mac_build_instructions.md#Prerequisites) * [Windows](https://chromium.googlesource.com/chromium/src/+/master/docs/windows_build_instructions.md) ### One-time setup $ script/bootstrap ### Building $ script/update -t x64 $ script/build -t x64 ### Updating project files If you switch to a different Chromium release, or modify files inside the `chromiumcontent` directory, you should run: $ script/update This will regenerate all the project files. Then you can build again. ### Building for ARM target > TODO: This section may be out of date, needs review ```bash $ ./script/bootstrap $ ./script/update -t arm $ cd vendor/chromium/src $ ./build/install-build-deps.sh --arm $ ./chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py --arch=arm $ cd - $ ./script/build -t arm ``` ### Building for ARM64 target ```bash $ ./script/bootstrap $ ./script/update -t arm64 $ ./script/build -t arm64 $ ./script/create-dist -t arm64 ```