Commit 5403f380 by Corentin Wallez

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.
parent fa61e4c0
......@@ -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" ]
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment