unplugged-system/external/skia/third_party/vulkanmemoryallocator/BUILD.bazel

24 lines
479 B
Python
Raw Normal View History

load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library")
licenses(["notice"])
exports_files_legacy()
skia_cc_library(
name = "vulkanmemoryallocator",
srcs = [
"GrVulkanMemoryAllocator.cpp",
],
includes = [
".",
],
textual_hdrs = [
"GrVulkanMemoryAllocator.h",
],
visibility = ["//:__subpackages__"],
deps = [
"//include/third_party/vulkan",
"@vulkanmemoryallocator//:hdrs",
],
)