Files
rk35xx-android14/external/skia/include/gpu/vk/BUILD.bazel
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

30 lines
687 B
Python

load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
licenses(["notice"])
exports_files_legacy()
# Group is exported to //gn/gpu.gni:skia_shared_vk_sources.
skia_filegroup(
name = "shared_public_hdrs",
srcs = [
"VulkanBackendContext.h",
"VulkanExtensions.h",
"VulkanMemoryAllocator.h",
"VulkanTypes.h",
],
)
# Group is exported to //gn/gpu.gni:skia_gpu_vk_public.
skia_filegroup(
name = "public_hdrs",
srcs = [
"GrVkBackendContext.h",
"GrVkExtensions.h",
"GrVkMemoryAllocator.h",
"GrVkTypes.h",
":shared_public_hdrs",
],
visibility = ["//include/gpu:__pkg__"],
)