aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar kkinnunen <kkinnunen@nvidia.com>2014-11-13 05:00:57 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-11-13 05:00:57 -0800
commitc092d3bdab5f723576cc0346cea3ee282a9cb444 (patch)
treed2a5ecf4ded3f126e2968d6ad7b4b05c1d536bfa /tools
parent5adbf1b57988eaad84d6615395c90a08b7ea225a (diff)
Make nanobench and dm be usable from Chromium build
Move the app logic for each app as follows: <app>.cpp -- the file which contains main(). Embedders that compile their own apps, such as ios shell, upcoming Chromium dm etc, do not use this. <app>_main.cpp -- the main logic of the Skia test application. This will be used by Skia -compiled apps as well as embedder -compiled apps. <app>_main.h -- the API for the main logic. This will be used by Skia -compiled apps as well as embedder -compiled apps. This way (the upcoming) Chromium dm can setup its Chromium-specific setup in custom main(), and then call dm_main(), without the need of any SK_BUILD_FOR_XXXX defines controlling whether the tool defines main or not. BUG=skia:2992 Review URL: https://codereview.chromium.org/657373002
Diffstat (limited to 'tools')
-rw-r--r--tools/iOSShell.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/iOSShell.cpp b/tools/iOSShell.cpp
index 8656e645aa..99d5ebd29a 100644
--- a/tools/iOSShell.cpp
+++ b/tools/iOSShell.cpp
@@ -13,6 +13,8 @@
#include "SkCommonFlags.h"
#include "SkGraphics.h"
#include "SkWindow.h"
+#include "dm.h"
+#include "nanobench.h"
#include "sk_tool_utils.h"
//////////////////////////////////////////////////////////////////////////////
@@ -56,9 +58,6 @@ void ShellWindow::onSizeChange() {
DEFINE_bool(dm, false, "run dm");
DEFINE_bool(nanobench, false, "run nanobench");
-int nanobench_main();
-int dm_main();
-
IOS_launch_type set_cmd_line_args(int argc, char *argv[], const char* resourceDir) {
SkCommandLineFlags::Parse(argc, argv);
SetResourcePath(resourceDir);