From a97c1d911ae7b5aa40b34b21e680e7496a9e6a55 Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Wed, 1 Aug 2018 14:28:10 -0400 Subject: [PATCH] Fixup BUILD.gn to use a group for SPIRV-Tools (#1779) The SPIRV-Tools target doesn't build anything, it just depends on the other libraries. As such, there is no static_library generated and this should be a group() instead. --- BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 9765a889e..c9733b8ef 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -577,7 +577,7 @@ static_library("spvtools_opt") { configs += [ "//build/config/compiler:no_chromium_code" ] } -static_library("SPIRV-Tools") { +group("SPIRV-Tools") { deps = [ ":spvtools", ":spvtools_opt",