From 873734dd3f6337e891d70277e7394704dd6fbdeb Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Wed, 26 Sep 2018 14:51:19 -0700 Subject: [PATCH] BUILD.gn: make the static_lib complete to fix the build on OSX --- BUILD.gn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 8bead489..91bb4bba 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -55,6 +55,8 @@ source_set("glslang_sources") { "SPIRV/SPVRemapper.h", "SPIRV/SpvBuilder.cpp", "SPIRV/SpvBuilder.h", + "SPIRV/SpvPostProcess.cpp", + "SPIRV/SpvPostProcess.h", "SPIRV/bitutils.h", "SPIRV/disassemble.cpp", "SPIRV/disassemble.h", @@ -155,6 +157,7 @@ static_library("glslang_static") { deps = [ ":glslang_sources", ] + complete_static_lib = true configs -= [ "//build/config/compiler:chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ]