aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--fuzz/fuzz.cpp2
-rw-r--r--modules/skottie/BUILD.gn1
2 files changed, 2 insertions, 1 deletions
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp
index 161969fb43..0917747790 100644
--- a/fuzz/fuzz.cpp
+++ b/fuzz/fuzz.cpp
@@ -201,7 +201,7 @@ static int fuzz_file(SkString path, SkString type) {
return 0;
}
#endif
- SkDebugf("Unknown type %s\n");
+ SkDebugf("Unknown type %s\n", type.c_str());
SkCommandLineFlags::PrintUsage();
return 1;
}
diff --git a/modules/skottie/BUILD.gn b/modules/skottie/BUILD.gn
index b3c532c00c..93213e9b35 100644
--- a/modules/skottie/BUILD.gn
+++ b/modules/skottie/BUILD.gn
@@ -37,6 +37,7 @@ source_set("fuzz") {
if (skia_enable_skottie) {
testonly = true
+ public_configs = [ ":public_config" ]
configs += [ "../..:skia_private" ]
sources = [
"fuzz/FuzzSkottieJSON.cpp",