aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skhello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/skhello.cpp')
-rw-r--r--tools/skhello.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/skhello.cpp b/tools/skhello.cpp
index 82abf80ba7..465806f8fa 100644
--- a/tools/skhello.cpp
+++ b/tools/skhello.cpp
@@ -14,7 +14,8 @@ static void show_help() {
SkDebugf("usage: skhello [-o out-dir] [-t 'hello']\n default output: skhello.png\n");
}
-int main(int argc, char* const argv[]) {
+int tool_main(int argc, char** argv);
+int tool_main(int argc, char** argv) {
SkAutoGraphics ag;
SkString path("skhello.png");
SkString text("Hello");
@@ -68,3 +69,9 @@ int main(int argc, char* const argv[]) {
}
return !success;
}
+
+#if !defined SK_BUILD_FOR_IOS
+int main(int argc, char * const argv[]) {
+ return tool_main(argc, (char**) argv);
+}
+#endif