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