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.
This commit is contained in:
dan sinclair 2018-08-01 14:28:10 -04:00 committed by GitHub
parent aa81e62cbe
commit a97c1d911a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -577,7 +577,7 @@ static_library("spvtools_opt") {
configs += [ "//build/config/compiler:no_chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ]
} }
static_library("SPIRV-Tools") { group("SPIRV-Tools") {
deps = [ deps = [
":spvtools", ":spvtools",
":spvtools_opt", ":spvtools_opt",