build: fix missing files in BUILD.gn (#5351)

PR #5278 added 2 new files, but they were not added to the BUILD.gn file.
Same fix for Android.mk.

Fixes #5350
This commit is contained in:
Nathan Gauër 2023-07-27 17:21:23 +02:00 committed by GitHub
parent b5f600c08c
commit c6d0b04802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -182,6 +182,7 @@ SPVTOOLS_OPT_SRC_FILES := \
source/opt/strip_debug_info_pass.cpp \ source/opt/strip_debug_info_pass.cpp \
source/opt/strip_nonsemantic_info_pass.cpp \ source/opt/strip_nonsemantic_info_pass.cpp \
source/opt/struct_cfg_analysis.cpp \ source/opt/struct_cfg_analysis.cpp \
source/opt/trim_capabilities_pass.cpp \
source/opt/type_manager.cpp \ source/opt/type_manager.cpp \
source/opt/types.cpp \ source/opt/types.cpp \
source/opt/unify_const_pass.cpp \ source/opt/unify_const_pass.cpp \

View File

@ -790,6 +790,8 @@ static_library("spvtools_opt") {
"source/opt/struct_cfg_analysis.cpp", "source/opt/struct_cfg_analysis.cpp",
"source/opt/struct_cfg_analysis.h", "source/opt/struct_cfg_analysis.h",
"source/opt/tree_iterator.h", "source/opt/tree_iterator.h",
"source/opt/trim_capabilities_pass.cpp",
"source/opt/trim_capabilities_pass.h",
"source/opt/type_manager.cpp", "source/opt/type_manager.cpp",
"source/opt/type_manager.h", "source/opt/type_manager.h",
"source/opt/types.cpp", "source/opt/types.cpp",