You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
James Ketrenos edited this page Sep 6, 2013
·
1 revision
Checkout
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
add to PATH
mkdir blink; cd blink
fetch blink --nosvn=True
sudo src/build/install-build-deps.sh
Note: --nosvn option of fetch is for non-chromium committers.
Updating
gclient sync
gclient also creates the build files, so for using Ninja (you should) to the following and rerun:
export GYP_GENERATORS='ninja'
gclient sync
Build
ninja -C out/[type] -j [cores] -l 20 [target]
where [type] is "Release" or "Debug"
[cores] the number of cores you like to build with
[target] the target, i.e. content_shell, DumpRenderTree or "chrome" or all_webkit. To build all of Blink and the DumpRenderTree use the following: