Skip to content

Commit 6c0666e

Browse files
build: Fix BUILD.gn for NonSemanticShaderDebugInfo (KhronosGroup#6647)
Fix for @y-novikov (KhronosGroup#6635 (comment))
1 parent 8b3a3c7 commit 6c0666e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

BUILD.gn

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ spvtools_language_header("cldebuginfo100") {
156156
name = "OpenCLDebugInfo100"
157157
grammar_file = "${spirv_headers}/include/spirv/unified1/extinst.opencl.debuginfo.100.grammar.json"
158158
}
159-
spvtools_language_header("vkdebuginfo100") {
160-
name = "NonSemanticShaderDebugInfo100"
161-
grammar_file = "${spirv_headers}/include/spirv/unified1/extinst.nonsemantic.shader.debuginfo.100.grammar.json"
159+
spvtools_language_header("vkdebuginfo") {
160+
name = "NonSemanticShaderDebugInfo"
161+
grammar_file = "${spirv_headers}/include/spirv/unified1/extinst.nonsemantic.shader.debuginfo.grammar.json"
162162
}
163163

164164
config("spvtools_public_config") {
@@ -218,7 +218,7 @@ group("spvtools_language_headers") {
218218
public_deps = [
219219
":spvtools_language_header_cldebuginfo100",
220220
":spvtools_language_header_debuginfo",
221-
":spvtools_language_header_vkdebuginfo100",
221+
":spvtools_language_header_vkdebuginfo",
222222
]
223223
}
224224

@@ -228,7 +228,7 @@ static_library("spvtools") {
228228
":spvtools_generators_inc",
229229
":spvtools_language_header_cldebuginfo100",
230230
":spvtools_language_header_debuginfo",
231-
":spvtools_language_header_vkdebuginfo100",
231+
":spvtools_language_header_vkdebuginfo",
232232
]
233233

234234
sources = [
@@ -387,7 +387,7 @@ static_library("spvtools_val") {
387387
":spvtools",
388388
":spvtools_language_header_cldebuginfo100",
389389
":spvtools_language_header_debuginfo",
390-
":spvtools_language_header_vkdebuginfo100",
390+
":spvtools_language_header_vkdebuginfo",
391391
]
392392
public_deps = [ ":spvtools_headers" ]
393393

@@ -655,7 +655,7 @@ static_library("spvtools_opt") {
655655
public_deps = [
656656
":spvtools_headers",
657657
":spvtools_language_header_cldebuginfo100",
658-
":spvtools_language_header_vkdebuginfo100",
658+
":spvtools_language_header_vkdebuginfo",
659659
]
660660

661661
if (build_with_chromium) {
@@ -1258,7 +1258,7 @@ if (build_with_chromium && spvtools_build_executables) {
12581258
":spvtools",
12591259
":spvtools_language_header_cldebuginfo100",
12601260
":spvtools_language_header_debuginfo",
1261-
":spvtools_language_header_vkdebuginfo100",
1261+
":spvtools_language_header_vkdebuginfo",
12621262
":spvtools_tools_io",
12631263
":spvtools_val",
12641264
"//testing/gmock",

0 commit comments

Comments
 (0)