From 3414554d6b4a8051b27ea4e2129a30f883f1045b Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Tue, 30 Dec 2025 18:04:53 +0900 Subject: [PATCH 1/2] Remove unnecessary libs Remove dependencies on efl-related libraries that are not actually used. --- flutter/shell/platform/tizen/BUILD.gn | 9 --------- tools/generate_sysroot.py | 8 -------- 2 files changed, 17 deletions(-) diff --git a/flutter/shell/platform/tizen/BUILD.gn b/flutter/shell/platform/tizen/BUILD.gn index 8cce5a06..5ffb7338 100644 --- a/flutter/shell/platform/tizen/BUILD.gn +++ b/flutter/shell/platform/tizen/BUILD.gn @@ -18,24 +18,15 @@ config("flutter_tizen_config") { "${sysroot_path}/usr/include/dali-toolkit", "${sysroot_path}/usr/include/dlog", "${sysroot_path}/usr/include/ecore-1", - "${sysroot_path}/usr/include/ecore-con-1", - "${sysroot_path}/usr/include/ecore-file-1", "${sysroot_path}/usr/include/ecore-imf-1", "${sysroot_path}/usr/include/ecore-input-1", "${sysroot_path}/usr/include/ecore-wayland-1", "${sysroot_path}/usr/include/ecore-wl2-1", - "${sysroot_path}/usr/include/edje-1", - "${sysroot_path}/usr/include/eet-1", "${sysroot_path}/usr/include/efl-1", - "${sysroot_path}/usr/include/efl-1/interfaces", - "${sysroot_path}/usr/include/efreet-1", "${sysroot_path}/usr/include/eina-1", "${sysroot_path}/usr/include/eina-1/eina", "${sysroot_path}/usr/include/eldbus-1", - "${sysroot_path}/usr/include/emile-1", "${sysroot_path}/usr/include/eo-1", - "${sysroot_path}/usr/include/ethumb-1", - "${sysroot_path}/usr/include/ethumb-client-1", "${sysroot_path}/usr/include/feedback", "${sysroot_path}/usr/include/system", "${sysroot_path}/usr/include/tzsh", diff --git a/tools/generate_sysroot.py b/tools/generate_sysroot.py index 4d884567..ade4890c 100755 --- a/tools/generate_sysroot.py +++ b/tools/generate_sysroot.py @@ -47,10 +47,8 @@ 'capi-ui-efl-util-devel', 'coregl', 'coregl-devel', - 'ecore-con-devel', 'ecore-core', 'ecore-core-devel', - 'ecore-file-devel', 'ecore-imf', 'ecore-imf-devel', 'ecore-input', @@ -59,19 +57,13 @@ 'ecore-wayland-devel', 'ecore-wl2', 'ecore-wl2-devel', - 'edje-devel', - 'eet', - 'eet-devel', 'efl-devel', - 'efreet-devel', 'eina', 'eina-devel', 'eina-tools', 'eldbus', 'eldbus-devel', - 'emile-devel', 'eo-devel', - 'ethumb-devel', 'glib2-devel', 'jsoncpp', 'jsoncpp-devel', From 9bcd9cd6968fbb2b016e439f01de601232818f78 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Fri, 2 Jan 2026 14:22:56 +0900 Subject: [PATCH 2/2] Add more libs --- flutter/shell/platform/tizen/BUILD.gn | 1 - tools/generate_sysroot.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/flutter/shell/platform/tizen/BUILD.gn b/flutter/shell/platform/tizen/BUILD.gn index 5ffb7338..f5a6df0c 100644 --- a/flutter/shell/platform/tizen/BUILD.gn +++ b/flutter/shell/platform/tizen/BUILD.gn @@ -112,7 +112,6 @@ template("embedder") { "capi-base-common", "capi-system-info", "capi-system-system-settings", - "capi-ui-efl-util", "dlog", "ecore", "ecore_imf", diff --git a/tools/generate_sysroot.py b/tools/generate_sysroot.py index ade4890c..2116b6d5 100755 --- a/tools/generate_sysroot.py +++ b/tools/generate_sysroot.py @@ -43,8 +43,6 @@ 'capi-system-info-devel', 'capi-system-system-settings', 'capi-system-system-settings-devel', - 'capi-ui-efl-util', - 'capi-ui-efl-util-devel', 'coregl', 'coregl-devel', 'ecore-core',