skip ewk_shutdown() for wearable profile
authorCho Woong Suk <ws77.cho@samsung.com>
Mon, 11 Jul 2016 14:21:16 +0000 (23:21 +0900)
committerJongHeon Choi <j-h.choi@samsung.com>
Fri, 15 Jul 2016 05:18:51 +0000 (14:18 +0900)
Change-Id: I874812b206d143d71856f2ac7354a840e38dce93

runtime/browser/runtime_process.cc

index fd63a6c..0b0347f 100755 (executable)
@@ -130,7 +130,10 @@ int real_main(int argc, char* argv[]) {
     ret = runtime->Exec(argc, argv);
     runtime.reset();
   }
+#ifndef PROFILE_WEARABLE
+  LOGGER(DEBUG) << "ewk_shutdown() called";
   ewk_shutdown();
+#endif
   exit(ret);
 
   return EXIT_SUCCESS;