1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
load("//bazel:skia_rules.bzl", "generate_cpp_files_for_headers", "skia_filegroup")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
PUBLIC_HEADERS = [
"GrBackendDrawableInfo.h",
"GrVkBackendSemaphore.h",
"GrVkBackendSurface.h",
"GrVkDirectContext.h",
"GrVkTypes.h",
]
skia_filegroup(
name = "public_hdrs",
srcs = PUBLIC_HEADERS,
visibility = [
"//include/gpu/ganesh:__pkg__",
"//src/gpu/ganesh/vk:__pkg__",
],
)
generate_cpp_files_for_headers(
name = "headers_to_compile",
headers = PUBLIC_HEADERS,
)
|