mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
fixes https://github.com/flutter/flutter/issues/130682 This patch makes all zip files created via the zip_bundle rule have an embedded LICENSE that points to a permalink to the LICENSE for that SDK commit hash. Previously we only did this for a few tools, but it was pointed out that some of the zip files we generate that are meant for consumption in the tool are otherwise missing a stand-alone license file (the tool downloads the full license file separately from the individual zips, as it would be costly to include it with each and every one).
path_ops
A small library that exposes C bindings for Skia's SkPathOps, with a minimal interface for SkPath.
This library only supports four commands from SkPath: moveTo, lineTo,
cubicTo, and close.
This library is a subset of the functionality provided by Skia's PathKit
library. It is primarily intended for use with the vector_graphics optimizing
compiler. That library uses this one to optimize certain masking and clipping
operations at compile time.