| 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
|
| -------------
|
|
|
|
|