aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn2
-rw-r--r--include/images/SkForceLinking.h2
-rw-r--r--tools/fiddle/draw.cpp2
-rw-r--r--tools/fiddle/fiddle_main.cpp3
4 files changed, 8 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index e6defbf604..d1daccb598 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -308,7 +308,9 @@ executable("fiddle") {
deps = [
":skia",
":skia.h",
+ ":tool_utils",
]
+ testonly = true
}
template("test_lib") {
diff --git a/include/images/SkForceLinking.h b/include/images/SkForceLinking.h
index 13ada542e1..5de8918e6f 100644
--- a/include/images/SkForceLinking.h
+++ b/include/images/SkForceLinking.h
@@ -5,6 +5,8 @@
* found in the LICENSE file.
*/
+#include "SkTypes.h"
+
/**
* This function's sole purpose is to trick the linker into not discarding
* SkImageDecoder subclasses just because we do not directly call them.
diff --git a/tools/fiddle/draw.cpp b/tools/fiddle/draw.cpp
index 78f428da2a..68cbbdf8d6 100644
--- a/tools/fiddle/draw.cpp
+++ b/tools/fiddle/draw.cpp
@@ -12,7 +12,7 @@
#include "fiddle_main.h"
DrawOptions GetDrawOptions() {
// path *should* be absolute.
- static const char path[] = "../../resources/color_wheel.png";
+ static const char path[] = "resources/color_wheel.png";
return DrawOptions(256, 256, true, true, true, true, path);
}
void draw(SkCanvas* canvas) {
diff --git a/tools/fiddle/fiddle_main.cpp b/tools/fiddle/fiddle_main.cpp
index 1c80c4416c..df2e8ff66e 100644
--- a/tools/fiddle/fiddle_main.cpp
+++ b/tools/fiddle/fiddle_main.cpp
@@ -7,6 +7,9 @@
#include <stdio.h>
#include <stdlib.h>
+#include "SkForceLinking.h"
+
+__SK_FORCE_IMAGE_DECODER_LINKING;
#include "fiddle_main.h"