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