aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-16 19:21:00 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-16 19:21:00 +0000
commit71e800a6f8058b3eb171b280fc2254fb8c88d13d (patch)
tree2927a50ef5c21a5627d72f6421e324774e17ecee /docs
parent8121c6cb70d89552455f1a03df4dc98ea3e9af71 (diff)
This is an short replacement for gclient.
Makes use of our current DEPS file to allow for a smooth transition. BUG=skia:291 NOTRY=true R=borenet@google.com, tfarina@chromium.org, epoger@google.com, mtklein@google.com Author: halcanary@google.com Review URL: https://codereview.chromium.org/191133005 git-svn-id: http://skia.googlecode.com/svn/trunk@14227 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'docs')
-rw-r--r--docs/quickstart.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 554ea48836..601ecf4f4f 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -1,14 +1,14 @@
Skia Quickstart Guide
=====================
-This guide assumes you've got `gclient`, `git`, and `ninja` on your path.
+This guide assumes you've got `git`, `ninja`, and `python` on your path.
-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/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`