1# Copyright 2019 The ANGLE Project Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5config("volk_config") { 6 include_dirs = [ "." ] 7} 8 9source_set("volk") { 10 sources = [ 11 "volk.c", 12 "volk.h", 13 ] 14 public_configs = [ ":volk_config" ] 15 public_deps = [ "../../../third_party/vulkan-headers/src:vulkan_headers" ] 16} 17