aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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
]
}
}