* We now build the whole libskia (static library for Linux/Mac, shared DLL for Windows) using skia's own build toolchain. The current libskia embedded is from the "chrome/m80" branch.
* Expose `SkStrokeRec` as `pathops.Path::stroke`, for transforming a stroked path into an outline; this supports all properties of SVG path's stroke attribute (width, cap, join, miter limit)
* Added `Path::arcTo` method, which models SVG elliptical arcs. Note that skia internally stores elliptical arcs using conic curves.
* Added `Path::convertConicsToQuads` method to approximate conic curves using qudratic bezier curves (e.g. so that they can be drawn with fonttools pens).