• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5import("../../../gni/angle.gni")
6
7config("volk_config") {
8  include_dirs = [ "." ]
9}
10
11source_set("volk") {
12  sources = [
13    "volk.c",
14    "volk.h",
15  ]
16  public_configs = [ ":volk_config" ]
17  configs += [ "$angle_root:angle_no_cfi_icall" ]
18  public_deps = [ "$angle_vulkan_headers_dir:vulkan_headers" ]
19}
20