4156d33568
Suppresses all warnings (nonportable include paths, etc.) Change-Id: Ic1bbf2496a2fe259d5e7a9537e1d89ec74a99add Reviewed-on: https://skia-review.googlesource.com/c/skia/+/271857 Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: Brian Osman <brianosman@google.com> Reviewed-by: Mike Klein <mtklein@google.com>
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
import("../third_party.gni")
|
|
|
|
spirv_cross = "//third_party/externals/spirv-cross"
|
|
|
|
third_party("spirv_cross") {
|
|
public_include_dirs = [
|
|
"//third_party/externals",
|
|
"//third_party/externals/spirv-cross",
|
|
]
|
|
public_defines = [ "SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS" ]
|
|
|
|
sources = rebase_path([
|
|
"GLSL.std.450.h",
|
|
"spirv.hpp",
|
|
"spirv_cfg.cpp",
|
|
"spirv_cfg.hpp",
|
|
"spirv_common.hpp",
|
|
"spirv_cpp.cpp",
|
|
"spirv_cpp.hpp",
|
|
"spirv_cross.cpp",
|
|
"spirv_cross.hpp",
|
|
"spirv_cross_parsed_ir.cpp",
|
|
"spirv_cross_parsed_ir.hpp",
|
|
"spirv_glsl.cpp",
|
|
"spirv_glsl.hpp",
|
|
"spirv_hlsl.cpp",
|
|
"spirv_hlsl.hpp",
|
|
"spirv_msl.cpp",
|
|
"spirv_msl.hpp",
|
|
"spirv_parser.cpp",
|
|
"spirv_parser.hpp",
|
|
],
|
|
".",
|
|
"${spirv_cross}")
|
|
}
|