[UTC][wifi-manager][Non-ACR][Remove Elementary dependency] 36/273236/1
authorJaehyun Kim <jeik01.kim@samsung.com>
Fri, 1 Apr 2022 02:15:09 +0000 (11:15 +0900)
committerJaehyun Kim <jeik01.kim@samsung.com>
Fri, 1 Apr 2022 02:17:18 +0000 (11:17 +0900)
Change-Id: I67d9e56bb51f2d806439e38cc2100e400d8d0025
Signed-off-by: Jaehyun Kim <jeik01.kim@samsung.com>
src/utc/wifi-manager/CMakeLists.txt
src/utc/wifi-manager/tct-wifi-manager-core.c

index 8fadec307c06aac262c04c47bb25800625ef1ff5..388229b2017bec222fa8de4dee77d52fb2661414 100755 (executable)
@@ -17,9 +17,8 @@ PKG_CHECK_MODULES(${CAPI_LIB} REQUIRED
        capi-appfw-application
        capi-system-info
        glib-2.0
-    bundle
-       dlog 
-       elementary
+       bundle
+       dlog
 )
 
 INCLUDE_DIRECTORIES(
index 101e8f6b41af6d3c6184fe3cfeabcccb935c990c..469682e9921dfca5969e86dda0243bf64a6e62ff 100755 (executable)
 #include <app.h>
 #include <dlog.h>
 
-#include <Elementary.h>
-
-typedef struct appdata {
-       Evas_Object *win;
-       Evas_Object *conform;
-       Evas_Object *label;
-} appdata_s;
-
 static bool app_create(void *data)
 {
        return true;
@@ -117,7 +109,6 @@ static void app_terminate(void *data)
 int main(int argc, char *argv[])
 {
        int ret = 0;
-       appdata_s ad = {0,};
 
        ui_app_lifecycle_callback_s event_callback = {0,};
        event_callback.create = app_create;
@@ -129,7 +120,7 @@ int main(int argc, char *argv[])
        dlog_print(DLOG_INFO, "NativeTCT", "[%s:%d] Coverage *.gcda File location set to /tmp/home/abuild/rpmbuild/BUILD/ ", __FUNCTION__, __LINE__);
 
        dlog_print(DLOG_INFO, "NativeTCT", "[%s:%d] Application Main Function is Invoked", __FUNCTION__, __LINE__);
-       ret = ui_app_main(argc, argv, &event_callback, &ad);
+       ret = ui_app_main(argc, argv, &event_callback, NULL);
        if (ret != APP_ERROR_NONE)
        {
                dlog_print(DLOG_ERROR, "NativeTCT", "Application ui_app_main call gets failed. err = %d", ret);