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", | |
], | |
) |