Index: docs/quickstart.md |
diff --git a/docs/quickstart.md b/docs/quickstart.md |
index 554ea488369a258c02031732c5dc8bbf6a844389..8b60c5aa54a40687020fd21e7237d15f820b05a2 100644 |
--- a/docs/quickstart.md |
+++ b/docs/quickstart.md |
@@ -1,14 +1,16 @@ |
Skia Quickstart Guide |
===================== |
-This guide assumes you've got `gclient`, `git`, and `ninja` on your path. |
+This guide assumes you've got `git` and `python` on your path. |
borenet
2014/03/10 18:36:12
When did this file get added? I think it's a real
tfarina
2014/03/10 18:53:26
This file was added here -> https://codereview.chr
|
-1. First, create a directory to hold Skia: |
- * `mkdir skia` |
+1. First, checkout Skia: |
+ * `git clone https://skia.googlesource.com/skia.git` |
* `cd skia` |
-2. Then checkout Skia: |
- * `gclient config --name . https://skia.googlesource.com/skia.git` |
- * `gclient sync` |
+2. Then download the dependencies. You only need to rerun this when |
+ the dependencies change. |
+ * `python tools/grab_deps.py` |
+2. Add `ninja` to your path: |
+ * `export PATH="${PATH}:$(pwd)/third_party/externals/depot_tools"` |
tfarina
2014/03/10 18:56:30
I don't think we need to say that. At least I thin
|
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` |