22 lines
537 B
Python
22 lines
537 B
Python
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
# Not yet referenced by Bazel build.
|
|
# In separate group for exporting to xps.gni:skia_xps_public.
|
|
skia_filegroup(
|
|
name = "xps_hdrs",
|
|
srcs = ["SkXPSDocument.h"],
|
|
)
|
|
|
|
skia_filegroup(
|
|
name = "public_hdrs",
|
|
srcs = select({
|
|
"//src/pdf:enable_pdf_backend_true": ["SkPDFDocument.h"],
|
|
"//conditions:default": [],
|
|
}), # TODO(kjlubick) XPSDocument
|
|
visibility = ["//include:__pkg__"],
|
|
)
|