From e54493081930fa24e0e28cf2f3787f6d4be58cb7 Mon Sep 17 00:00:00 2001 From: zhouyj Date: Mon, 8 May 2023 11:28:54 +0800 Subject: [PATCH] Description: change repo path for lite graphic IssueNo: https://gitee.com/openharmony/graphic_ui/issues/I6WFDH Feature or Bugfix: Feature Binary Source:No Signed-off-by: zhouyj --- bundle.json | 6 +++--- frameworks/ability_lite/BUILD.gn | 6 +++--- frameworks/ability_lite/example/BUILD.gn | 8 ++++---- services/abilitymgr_lite/BUILD.gn | 4 ++-- services/abilitymgr_lite/tools/BUILD.gn | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bundle.json b/bundle.json index bfac6ee..610f01e 100644 --- a/bundle.json +++ b/bundle.json @@ -24,13 +24,13 @@ "components": [ "bundle_framework_lite", "kv_store", - "ui", - "surface", + "ui_lite", + "surface_lite", "hilog", "permission", "samgr_lite", "appspawn_lite", - "wms" + "window_manager_lite" ], "third_party": [ "bounds_checking_function", diff --git a/frameworks/ability_lite/BUILD.gn b/frameworks/ability_lite/BUILD.gn index ffb6e04..c5d21b0 100644 --- a/frameworks/ability_lite/BUILD.gn +++ b/frameworks/ability_lite/BUILD.gn @@ -110,8 +110,8 @@ lite_library("ability") { "${communication_path}/ipc/interfaces/innerkits/c/ipc/include", "${communication_path}/ipc/ipc/native/c/manager/include", "${kv_store_path}/interfaces/inner_api/kv_store/include", - "${graphic_path}/surface/interfaces/kits", - "${graphic_path}/ui/frameworks", + "${graphic_path}/surface_lite/interfaces/kits", + "${graphic_path}/../arkui/ui_lite/frameworks", "${samgr_lite_path}/interfaces/kits/registry", "${samgr_lite_path}/interfaces/kits/samgr", "//third_party/bounds_checking_function/include", @@ -131,7 +131,7 @@ lite_library("ability") { cflags_cc = cflags if (enable_ohos_appexecfwk_feature_ability == true) { - public_deps += [ "${graphic_path}/ui:ui_lite" ] + public_deps += [ "${graphic_path}/../arkui/ui_lite:ui_lite" ] } if (ohos_kernel_type == "liteos_m") { diff --git a/frameworks/ability_lite/example/BUILD.gn b/frameworks/ability_lite/example/BUILD.gn index d7da17b..0546e47 100644 --- a/frameworks/ability_lite/example/BUILD.gn +++ b/frameworks/ability_lite/example/BUILD.gn @@ -43,9 +43,9 @@ lite_library("hiability") { "${appexefwk_lite_path}/interfaces/kits/bundle_lite", "${appexefwk_lite_path}/utils/bundle_lite", "${communication_path}/ipc/interfaces/innerkits/c/ipc/include", - "${graphic_path}/utils/interfaces/innerkits", - "${graphic_path}/ui/interfaces/kits", - "${graphic_path}/utils/interfaces/kits/gfx_utils", + "${graphic_path}/graphic_utils_lite/interfaces/innerkits", + "${graphic_path}/../arkui/ui_lite/interfaces/kits", + "${graphic_path}/graphic_utils_lite/interfaces/kits/gfx_utils", ] deps = [ "${aafwk_lite_path}/frameworks/ability_lite:aafwk_abilitykit_lite" ] @@ -53,7 +53,7 @@ lite_library("hiability") { defines = [ "OHOS_APPEXECFWK_BMS_BUNDLEMANAGER" ] if (enable_ohos_appexecfwk_feature_ability == true) { - deps += [ "${graphic_path}/ui:ui_lite" ] + deps += [ "${graphic_path}/../arkui/ui_lite:ui_lite" ] defines += [ "ENABLE_WINDOW=1", "ABILITY_WINDOW_SUPPORT", diff --git a/services/abilitymgr_lite/BUILD.gn b/services/abilitymgr_lite/BUILD.gn index 593a2ce..b5d7388 100644 --- a/services/abilitymgr_lite/BUILD.gn +++ b/services/abilitymgr_lite/BUILD.gn @@ -139,7 +139,7 @@ lite_library("abilityms") { } if (enable_ohos_appexecfwk_feature_ability == true) { - deps += [ "${graphic_path}/surface" ] + deps += [ "${graphic_path}/surface_lite" ] defines += [ "ABILITY_WINDOW_SUPPORT" ] } @@ -161,7 +161,7 @@ lite_library("abilityms") { "${utils_lite_path}/memory/include", "${dmsfwk_lite_path}/interfaces/innerkits", "${communication_path}/ipc/interfaces/innerkits/c/ipc/include", - "${graphic_path}/wms/interfaces/innerkits", + "${graphic_path}/../window/window_manager_lite/interfaces/innerkits", "${samgr_lite_path}/interfaces/kits/registry", "${samgr_lite_path}/interfaces/kits/samgr", "//third_party/bounds_checking_function/include", diff --git a/services/abilitymgr_lite/tools/BUILD.gn b/services/abilitymgr_lite/tools/BUILD.gn index 22e4332..c9d029d 100644 --- a/services/abilitymgr_lite/tools/BUILD.gn +++ b/services/abilitymgr_lite/tools/BUILD.gn @@ -53,9 +53,9 @@ executable("aa") { if (enable_ohos_appexecfwk_feature_ability == true) { deps += [ - "${graphic_path}/surface", - "${graphic_path}/ui:ui_lite", - "${graphic_path}/utils:graphic_utils_lite", + "${graphic_path}/../arkui/ui_lite:ui_lite", + "${graphic_path}/graphic_utils_lite:utils_lite", + "${graphic_path}/surface_lite", ] } include_dirs = [ -- Gitee