18 lines
470 B
Python
18 lines
470 B
Python
|
|
load("//bazel:skia_rules.bzl", "exports_files_legacy", "select_multi", "skia_filegroup")
|
||
|
|
|
||
|
|
licenses(["notice"])
|
||
|
|
|
||
|
|
exports_files_legacy()
|
||
|
|
|
||
|
|
skia_filegroup(
|
||
|
|
name = "private_hdrs",
|
||
|
|
srcs = [
|
||
|
|
"//include/private/gpu/ganesh:private_hdrs",
|
||
|
|
] + select_multi(
|
||
|
|
{
|
||
|
|
"//src/gpu:vulkan_backend": ["//include/private/gpu/vk:private_hdrs"],
|
||
|
|
},
|
||
|
|
), # TODO(kjlubick) add select for graphite
|
||
|
|
visibility = ["//include/private:__pkg__"],
|
||
|
|
)
|