aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorGravatar Florin Malita <fmalita@chromium.org>2018-05-29 10:30:01 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-29 14:50:05 +0000
commit77f2db73392f00d8428029bf7db03e2ef94201e5 (patch)
tree3e83814bc059f5ec93f69758178c5ed88775fc05 /modules
parent9839ca45e10d2dd09195b357a9c18784476c8843 (diff)
Clean up modules/skottie/BUILD.gn
Per comments in https://skia-review.googlesource.com/c/skia/+/130480 Change-Id: I978b04e4b06bf01c008b44540c640b77f5900f12 Reviewed-on: https://skia-review.googlesource.com/130501 Reviewed-by: Kevin Lubick <kjlubick@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
Diffstat (limited to 'modules')
-rw-r--r--modules/skottie/BUILD.gn7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/skottie/BUILD.gn b/modules/skottie/BUILD.gn
index 93213e9b35..f704eb4cb7 100644
--- a/modules/skottie/BUILD.gn
+++ b/modules/skottie/BUILD.gn
@@ -37,14 +37,17 @@ source_set("fuzz") {
if (skia_enable_skottie) {
testonly = true
- public_configs = [ ":public_config" ]
configs += [ "../..:skia_private" ]
sources = [
"fuzz/FuzzSkottieJSON.cpp",
]
+
deps = [
+ "../..:skia",
+ ]
+
+ public_deps = [
":skottie",
- "../..:skia", # TODO: refactor to make this nicer
]
}
}