blob: 19efe6fa1ef97fb1e2afd84b179fb36d212cc941 [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",
"@vulkanmemoryallocator//:hdrs",
],
)