• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "skia_filegroup")
2
3package(
4    default_applicable_licenses = ["//:license"],
5)
6
7licenses(["notice"])
8
9skia_filegroup(
10    name = "public_hdrs",
11    srcs = [
12        "GrMtlBackendContext.h",
13        "GrMtlBackendSemaphore.h",
14        "GrMtlBackendSurface.h",
15        "GrMtlDirectContext.h",
16        "GrMtlTypes.h",
17        "SkSurfaceMetal.h",
18    ],
19    visibility = [
20        "//include/gpu/ganesh:__pkg__",
21        "//src/gpu/ganesh/mtl:__pkg__",
22    ],
23)
24