Skip to content

Commit d550beb

Browse files
authored
Fix build error with Chromium & ANGLE (KhronosGroup#2446)
Getting error about undefined symbol (include_dir) at line 320. Was trying to append to a non-existant variable. Bug KhronosGroup#2445
1 parent c897c3b commit d550beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ executable("spirv-remap") {
317317
defines = [ "ENABLE_OPT=1" ]
318318
deps = [ ":glslang_sources" ]
319319

320-
include_dirs += [ "${spirv_tools_dir}/include" ]
320+
include_dirs = [ "${spirv_tools_dir}/include" ]
321321

322322
configs -= _configs_to_remove
323323
configs += _configs_to_add

0 commit comments

Comments
 (0)