1cb93a386Sopenharmony_ci# Copyright (c) 2020 Google LLC
2cb93a386Sopenharmony_ci#
3cb93a386Sopenharmony_ci# Permission is hereby granted, free of charge, to any person obtaining a copy
4cb93a386Sopenharmony_ci# of this software and/or associated documentation files (the "Materials"),
5cb93a386Sopenharmony_ci# to deal in the Materials without restriction, including without limitation
6cb93a386Sopenharmony_ci# the rights to use, copy, modify, merge, publish, distribute, sublicense,
7cb93a386Sopenharmony_ci# and/or sell copies of the Materials, and to permit persons to whom the
8cb93a386Sopenharmony_ci# Materials are furnished to do so, subject to the following conditions:
9cb93a386Sopenharmony_ci#
10cb93a386Sopenharmony_ci# The above copyright notice and this permission notice shall be included in
11cb93a386Sopenharmony_ci# all copies or substantial portions of the Materials.
12cb93a386Sopenharmony_ci#
13cb93a386Sopenharmony_ci# MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
14cb93a386Sopenharmony_ci# STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
15cb93a386Sopenharmony_ci# HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/
16cb93a386Sopenharmony_ci#
17cb93a386Sopenharmony_ci# THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18cb93a386Sopenharmony_ci# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19cb93a386Sopenharmony_ci# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20cb93a386Sopenharmony_ci# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21cb93a386Sopenharmony_ci# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22cb93a386Sopenharmony_ci# FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
23cb93a386Sopenharmony_ci# IN THE MATERIALS.
24cb93a386Sopenharmony_ci
25cb93a386Sopenharmony_ciconfig("spv_headers_public_config") {
26cb93a386Sopenharmony_ci  include_dirs = [ "include" ]
27cb93a386Sopenharmony_ci}
28cb93a386Sopenharmony_ci
29cb93a386Sopenharmony_cisource_set("spv_headers") {
30cb93a386Sopenharmony_ci  sources = [
31cb93a386Sopenharmony_ci    "include/spirv/1.2/GLSL.std.450.h",
32cb93a386Sopenharmony_ci    "include/spirv/1.2/OpenCL.std.h",
33cb93a386Sopenharmony_ci    "include/spirv/1.2/spirv.h",
34cb93a386Sopenharmony_ci    "include/spirv/1.2/spirv.hpp",
35cb93a386Sopenharmony_ci    "include/spirv/unified1/GLSL.std.450.h",
36cb93a386Sopenharmony_ci    "include/spirv/unified1/NonSemanticClspvReflection.h",
37cb93a386Sopenharmony_ci    "include/spirv/unified1/NonSemanticDebugPrintf.h",
38cb93a386Sopenharmony_ci    "include/spirv/unified1/OpenCL.std.h",
39cb93a386Sopenharmony_ci    "include/spirv/unified1/spirv.h",
40cb93a386Sopenharmony_ci    "include/spirv/unified1/spirv.hpp",
41cb93a386Sopenharmony_ci  ]
42cb93a386Sopenharmony_ci
43cb93a386Sopenharmony_ci  public_configs = [ ":spv_headers_public_config" ]
44cb93a386Sopenharmony_ci}
45