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

Unified Diff: site/user/quick/linux.md

Issue 1112663002: doc: add quickstart to linux and macos (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-04-28 (Tuesday) 16:01:10 EDT Created 5 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 | site/user/quick/macos.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site/user/quick/linux.md
diff --git a/site/user/quick/linux.md b/site/user/quick/linux.md
index ef4f95b6678d2990485dcbba5a3e7f8c7b758cea..7a172a5d955bc3d3f5d0b39da02df761e588b078 100644
--- a/site/user/quick/linux.md
+++ b/site/user/quick/linux.md
@@ -1,6 +1,42 @@
Linux
=====
+Quickstart
+----------
+
+1. Install depot tools.
+
+ <!--?prettify lang=sh?-->
+
+ git clone 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
+ export PATH="${PWD}/depot_tools:${PATH}"
+
+2. Get Skia.
+
+ <!--?prettify lang=sh?-->
+
+ git clone 'https://skia.googlesource.com/skia'
+ cd skia
+
+3. Install Dependencies (may require sudo).
+
+ <!--?prettify lang=sh?-->
+
+ tools/install_dependencies.sh
+
+4. Build.
+
+ <!--?prettify lang=sh?-->
+
+ bin/sync-and-gyp && ninja -C out/Debug
+
+5. Run DM (the Skia test app) and SampleApp.
+
+ <!--?prettify lang=sh?-->
+
+ out/Debug/dm
+ out/Debug/SampleApp
+
Prerequisites
-------------
« no previous file with comments | « no previous file | site/user/quick/macos.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698