skia2/third_party/vulkanmemoryallocator/BUILD.bazel
Kevin Lubick c3a448ec61 [bazel] Put licenses() after legacy_exports
G3 prefers license() first.

This was done mechanically with a big find/replace

Change-Id: I8c33c7bc10a6bec42e966cad81c259954e841811
Bug: skia:13211
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535898
Reviewed-by: Ben Wagner <bungeman@google.com>
2022-05-02 15:04:33 +00:00

24 lines
478 B
Python

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