summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2018-08-01 14:28:10 -0400
committerGitHub <noreply@github.com>2018-08-01 14:28:10 -0400
commita97c1d911ae7b5aa40b34b21e680e7496a9e6a55 (patch)
tree75884d7e57a1784d190b9b7bb94bd20692b59548
parentaa81e62cbeb3ef2885168ce687440b6bbe9f1f27 (diff)
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.
-rw-r--r--BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 9765a889..c9733b8e 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",