blob: 358cdef740ba221b6654eb4d2ea260b8e16055ce [file] [log] [blame]
# Copyright 2019 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("volk_config") {
include_dirs = [ "." ]
}
source_set("volk") {
sources = [
"volk.c",
"volk.h",
]
public_configs = [ ":volk_config" ]
public_deps = [ "../../../third_party/vulkan-headers/src:vulkan_headers" ]
}