• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
11skia_filegroup(
12    name = "srcs",
13    srcs = [
14        "Ellipse.cpp",
15        "FillStroke.cpp",
16        "Gradient.cpp",
17        "MergePaths.cpp",
18        "OffsetPaths.cpp",
19        "Polystar.cpp",
20        "PuckerBloat.cpp",
21        "Rectangle.cpp",
22        "Repeater.cpp",
23        "RoundCorners.cpp",
24        "ShapeLayer.cpp",
25        "ShapeLayer.h",
26        "TrimPaths.cpp",
27    ],
28    visibility = ["//modules/skottie/src/layers:__pkg__"],
29)
30