From 5403f380a46d7864c189943c7b32ca38844333e3 Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Wed, 17 Oct 2018 12:22:28 +0200 Subject: [PATCH] BUILD.gn: remove the static_library target. This had no sources and depended on a source_set which is an invalid use of GN because the source_set gets propagated to dependents of the static_library instead. --- BUILD.gn | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 6239fd0..a84dbe2 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -152,18 +152,3 @@ source_set("glslang_sources") { "${spirv_tools_dir}:spvtools_opt", ] } - -static_library("glslang_static") { - deps = [ - ":glslang_sources", - ] - - # Without this the macOS linker complains that the static library is empty - if (is_mac) { - complete_static_lib = true - } - - configs -= [ "//build/config/compiler:chromium_code" ] - configs += [ "//build/config/compiler:no_chromium_code" ] -} - -- 2.7.4