• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
2
3licenses(["notice"])
4
5exports_files_legacy()
6
7# Not yet referenced by Bazel build.
8# In separate group for exporting to xps.gni:skia_xps_public.
9skia_filegroup(
10    name = "xps_hdrs",
11    srcs = ["SkXPSDocument.h"],
12)
13
14skia_filegroup(
15    name = "public_hdrs",
16    srcs = select({
17        "//src/pdf:enable_pdf_backend_true": ["SkPDFDocument.h"],
18        "//conditions:default": [],
19    }),  # TODO(kjlubick) XPSDocument
20    visibility = ["//include:__pkg__"],
21)
22