24 lines
479 B
Python
24 lines
479 B
Python
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",
|
|
],
|
|
)
|