15 lines
311 B
Python
15 lines
311 B
Python
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
# Not yet included in a Bazel build.
|
|
# File group is here for exporting to utils.gni:skia_utils_public.
|
|
skia_filegroup(
|
|
name = "public_hdrs",
|
|
srcs = [
|
|
"SkCGUtils.h",
|
|
],
|
|
)
|