blob: d18ea7e770ab5af57284f96bce4c958c87040583 [file] [log] [blame]
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
licenses(["notice"])
exports_files_legacy()
cc_library(
name = "vulkanmemoryallocator",
srcs = [
"GrVulkanMemoryAllocator.cpp",
],
hdrs = [
"GrVulkanMemoryAllocator.h",
],
includes = [
".",
],
visibility = ["//:__subpackages__"],
deps = [
"//include/third_party/vulkan:skias_vulkan_headers",
"@vulkanmemoryallocator//:hdrs",
],
)