|
DownloadingSkiaCode
How to download the Skia code
originally written by epoger@google.com on 14 June 2011 How to download the Skia codeThere are several different ways to download your own copy of the Skia code. Which way you choose depends on these factors:
In all cases, the first thing you have to do is create an empty directory into which you wish to download the Skia code, and cd into that directory. Download a read-only copyIf all you need to do is build Skia and perhaps make local changes (changes you do not plan to submit back to the main repository), then you can grab a read-only copy without membership in the Skia project. Using Subversion: svn checkout http://skia.googlecode.com/svn/trunk Using depot_tools: gclient config http://skia.googlecode.com/svn/trunk gclient sync Download a writable copyIn order to do this, you will first need to obtain membership in the Skia project. Email epoger@google.com for details. Once you have membership, you should be able to run the following commands. If you are prompted for a password, enter your generated googlecode.com password from https://code.google.com/hosting/settings. Using Subversion: svn checkout https://skia.googlecode.com/svn/trunk --username <your googlecode.com username> Using depot_tools: gclient config https://skia.googlecode.com/svn/trunk gclient sync |