aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-05-11 18:19:52 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-11 18:19:52 -0700
commit06f3647cad2fad8e60bd9215a1dcee9550586d77 (patch)
tree2299d23ec74e2b1ba5fc7da144375bd573ea2130 /docs
parent1107e901c9dac3098e2915213f171ff62d007aa7 (diff)
Remove quickstart docs.
It is now obsolete by skia.org. All the relevant doc is hosted there now. BUG=None R=mtklein@google.com Review URL: https://codereview.chromium.org/1138833005
Diffstat (limited to 'docs')
-rw-r--r--docs/quickstart.md43
1 files changed, 0 insertions, 43 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md
deleted file mode 100644
index 12002caa64..0000000000
--- a/docs/quickstart.md
+++ /dev/null
@@ -1,43 +0,0 @@
-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 https://skia.org;
-see https://skia.org/user/quick.
-
-The steps documented within this file are more experimental in nature.
-
-
-This guide assumes you've got `git`, `ninja`, and `python` on your path.
-
-1. First, checkout Skia:
- * `git clone https://skia.googlesource.com/skia.git`
- * `cd skia`
-2. Then download the dependencies. You only need to rerun this when
- the dependencies change.
- * `python tools/git-sync-deps`
-3. 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`
-4. Now, let's build Skia. There are a few options:
- * `ninja -C out/Debug`: no optimization, asserts enabled
- * `ninja -C out/Release`: optimization, asserts disabled
- * `ninja -C out/Coverage`: no optimization, asserts enabled, code coverage generated
-5. Run some tests:
- * `out/Debug/dm`: runs golden master tests from gm/, unit tests from tests/
-6. 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`
-7. Rebase your change onto the latest Skia code:
- * `git pull --rebase`
- * `ninja -C out/Debug && out/Debug/dm && echo ok`
-8. Upload your change and send it out for review:
- * `git cl upload -r my-skia-reviewer@google.com -s`
- * `git cl web`
-9. Go through code review, get an LGTM, submit using the checkbox on the code review page.