e37ecd7666
This target does not exists anymore, it was folded into out/Debug/dm. You can't do `ninja -C out/Debug tests` either anymore. BUG=None TEST=None R=mtklein@google.com Review URL: https://codereview.chromium.org/638913005
1.8 KiB
1.8 KiB
Skia Quickstart Guide
WARNING: Several steps in this guide are out of sync with our automatically- tested, officially-supported processes for checking out and building Skia. The officially supported processes are the ones documented in skiadocs; see https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides
The steps documented within this file are more experimental in nature.
This guide assumes you've got git
, ninja
, and python
on your path.
- First, checkout Skia:
git clone https://skia.googlesource.com/skia.git
cd skia
- Then download the dependencies. You only need to rerun this when
the dependencies change.
python tools/git-sync-deps
- Create our Ninja build files from our Gyp meta-build files. You only need
to rerun this when you sync or change a
.gyp
file.GYP_GENERATORS=ninja ./gyp_skia
- Now, let's build Skia. There are a few options:
ninja -C out/Debug
: no optimization, asserts enabledninja -C out/Release
: optimization, asserts disabledninja -C out/Coverage
: no optimization, asserts enabled, code coverage generated
- Run some tests:
out/Debug/dm
: runs golden master tests from gm/, unit tests from tests/
- Make some changes:
git checkout -b my-new-feature origin/master
vim src/...
git commit -am "Changes for my new feature."
vim tests/...
git commit --amend -a
ninja -C out/Debug && out/Debug/dm && echo ok
- Rebase your change onto the latest Skia code:
git pull --rebase
ninja -C out/Debug && out/Debug/dm && echo ok
- Upload your change and send it out for review:
git cl upload -r my-skia-reviewer@google.com -s
git cl web
- Go through code review, get an LGTM, submit using the checkbox on the code review page.