From f5bba1cb8265c2bd5535ed3e8e759f21b824374b Mon Sep 17 00:00:00 2001 From: Baisong Zhong Date: Sat, 17 Jun 2023 10:25:29 +0800 Subject: [PATCH] IssueNo: https://gitee.com/openharmony/ability_ability_runtime/issues/I6YMKY Description: move module_manager module from arkui to ability_runtime Sig: SIG_ApplicationFramework Feature or Bugfix: Feature Binary Source:No Signed-off-by: Baisong Zhong Change-Id: I69b16464116411f49c826f19d8d7467da4f9acef --- frameworks/js/backup_ext/BUILD.gn | 5 ++++- frameworks/native/backup_ext/BUILD.gn | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/frameworks/js/backup_ext/BUILD.gn b/frameworks/js/backup_ext/BUILD.gn index 313ae8e6c..93326a8d2 100644 --- a/frameworks/js/backup_ext/BUILD.gn +++ b/frameworks/js/backup_ext/BUILD.gn @@ -16,7 +16,10 @@ import("//build/ohos.gni") ohos_static_library("backupextensionability_napi_fwk") { sources = [ "ext_backup_impl.cpp" ] - external_deps = [ "napi:ace_napi" ] + external_deps = [ + "ability_runtime:module_manager", + "napi:ace_napi", + ] part_name = "app_file_service" subsystem_name = "filemanagement" diff --git a/frameworks/native/backup_ext/BUILD.gn b/frameworks/native/backup_ext/BUILD.gn index 1a0e6fc48..1e5f32c9b 100644 --- a/frameworks/native/backup_ext/BUILD.gn +++ b/frameworks/native/backup_ext/BUILD.gn @@ -46,6 +46,7 @@ ohos_shared_library("backup_extension_ability_native") { "ability_runtime:ability_context_native", "ability_runtime:abilitykit_native", "ability_runtime:app_context", + "ability_runtime:module_manager", "ability_runtime:runtime", "access_token:libaccesstoken_sdk", "app_file_service:backup_kit_inner", -- Gitee