1load("//bazel:skia_rules.bzl", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9# This group is exported as //modules/svg/svg.gni:skia_svg_public 10skia_filegroup( 11 name = "public_hdrs", 12 srcs = [ 13 "SkSVGAttribute.h", 14 "SkSVGAttributeParser.h", 15 "SkSVGCircle.h", 16 "SkSVGClipPath.h", 17 "SkSVGContainer.h", 18 "SkSVGDOM.h", 19 "SkSVGDefs.h", 20 "SkSVGEllipse.h", 21 "SkSVGFe.h", 22 "SkSVGFeBlend.h", 23 "SkSVGFeColorMatrix.h", 24 "SkSVGFeComponentTransfer.h", 25 "SkSVGFeComposite.h", 26 "SkSVGFeDisplacementMap.h", 27 "SkSVGFeFlood.h", 28 "SkSVGFeGaussianBlur.h", 29 "SkSVGFeImage.h", 30 "SkSVGFeLightSource.h", 31 "SkSVGFeLighting.h", 32 "SkSVGFeMerge.h", 33 "SkSVGFeMorphology.h", 34 "SkSVGFeOffset.h", 35 "SkSVGFeTurbulence.h", 36 "SkSVGFilter.h", 37 "SkSVGFilterContext.h", 38 "SkSVGG.h", 39 "SkSVGGradient.h", 40 "SkSVGHiddenContainer.h", 41 "SkSVGIDMapper.h", 42 "SkSVGImage.h", 43 "SkSVGLine.h", 44 "SkSVGLinearGradient.h", 45 "SkSVGMask.h", 46 "SkSVGNode.h", 47 "SkSVGOpenTypeSVGDecoder.h", 48 "SkSVGPath.h", 49 "SkSVGPattern.h", 50 "SkSVGPoly.h", 51 "SkSVGRadialGradient.h", 52 "SkSVGRect.h", 53 "SkSVGRenderContext.h", 54 "SkSVGSVG.h", 55 "SkSVGShape.h", 56 "SkSVGStop.h", 57 "SkSVGText.h", 58 "SkSVGTransformableNode.h", 59 "SkSVGTypes.h", 60 "SkSVGUse.h", 61 "SkSVGValue.h", 62 ], 63 visibility = ["//modules/svg:__pkg__"], 64) 65