Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: docs/quickstart.md

Issue 191133005: git-sync-deps tool (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: AnotherPatchSet Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/git-sync-deps » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/quickstart.md
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 554ea488369a258c02031732c5dc8bbf6a844389..601ecf4f4f75eee134b4b18e7181d815ad29f001 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`
borenet 2014/04/20 16:53:45 Yeah, this isn't right. "gclient sync" is still t
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`
« no previous file with comments | « no previous file | tools/git-sync-deps » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698