From 9b94b6e7700dc9395dea095b953539bc312422e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=B2=E5=90=91=E5=AE=8751?= Date: Thu, 19 Jun 2025 06:39:56 +0000 Subject: [PATCH 1/4] update bundle.json. IssueNo:https://gitee.com/openharmony/arkui_ui_lite/issues/ICGB7Z?from=project-issue Feature or Bugfix: Bugfix Binary Source:No MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 仲向宇51 --- bundle.json | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle.json b/bundle.json index b6cf4ece..375512ad 100644 --- a/bundle.json +++ b/bundle.json @@ -55,6 +55,7 @@ "hilog", "selinux_adapter", "ui_lite", + "graphic_utils_lite", "bounds_checking_function", "bzip2", "cJSON", -- Gitee From 492f50acf5a23353510803c8941391b71d95955f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=B2=E5=90=91=E5=AE=8751?= Date: Thu, 19 Jun 2025 06:43:21 +0000 Subject: [PATCH 2/4] update services/BUILD.gn. IssueNo:https://gitee.com/openharmony/arkui_ui_lite/issues/ICGB7Z?from=project-issue Feature or Bugfix: Bugfix Binary Source:No MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 仲向宇51 --- services/BUILD.gn | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/services/BUILD.gn b/services/BUILD.gn index 694a757c..eead49b3 100755 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -106,7 +106,10 @@ ohos_static_library("libupdater_static") { } if (updater_ui_support) { - external_deps += [ "ui_lite:libupdater_layout" ] + external_deps += [ + "ui_lite:libupdater_layout", + "graphic_utils_lite:utils_lite", + ] deps += [ "${updater_path}/services/ui:libui" ] } @@ -191,7 +194,10 @@ ohos_static_library("libupdater") { } if (updater_ui_support) { - external_deps += [ "ui_lite:libupdater_layout" ] + external_deps += [ + "ui_lite:libupdater_layout", + "graphic_utils_lite:utils_lite", + ] } if (build_selinux) { -- Gitee From bf68ba385b2fad31a2cd2c9581ae07a576446c11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=B2=E5=90=91=E5=AE=8751?= Date: Thu, 19 Jun 2025 06:50:46 +0000 Subject: [PATCH 3/4] update services/ui/BUILD.gn. IssueNo:https://gitee.com/openharmony/arkui_ui_lite/issues/ICGB7Z?from=project-issue Feature or Bugfix: Bugfix Binary Source:No MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 仲向宇51 --- services/ui/BUILD.gn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/ui/BUILD.gn b/services/ui/BUILD.gn index 5eb07f06..dbb08102 100644 --- a/services/ui/BUILD.gn +++ b/services/ui/BUILD.gn @@ -103,6 +103,7 @@ ohos_static_library("libui") { "c_utils:utils", "libdrm:libdrm", "libpng:libpng", + "graphic_utils_lite:utils_lite", ] if (!updater_ui_support) { @@ -111,6 +112,7 @@ ohos_static_library("libui") { external_deps += [ "drivers_interface_input:libinput_proxy_1.0", "ui_lite:libupdater_layout", + "graphic_utils_lite:utils_lite", ] } -- Gitee From 17ba9d405155f4078feec8dd99baa5c348adaf53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=B2=E5=90=91=E5=AE=8751?= Date: Thu, 19 Jun 2025 07:04:50 +0000 Subject: [PATCH 4/4] update test/unittest/updater_ui_test/BUILD.gn. IssueNo:https://gitee.com/openharmony/arkui_ui_lite/issues/ICGB7Z?from=project-issue Feature or Bugfix: Bugfix Binary Source:No MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 仲向宇51 --- test/unittest/updater_ui_test/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unittest/updater_ui_test/BUILD.gn b/test/unittest/updater_ui_test/BUILD.gn index 81c6f0f1..7bd5bfd9 100644 --- a/test/unittest/updater_ui_test/BUILD.gn +++ b/test/unittest/updater_ui_test/BUILD.gn @@ -105,6 +105,7 @@ ohos_unittest("ui_unittest") { "libdrm:libdrm", "libpng:libpng", "ui_lite:libupdater_layout", + "graphic_utils_lite:utils_lite", ] install_enable = true part_name = "updater" -- Gitee