From ee23051a82b1a3677a70752e5c430e5051955d84 Mon Sep 17 00:00:00 2001 From: zhouyj Date: Fri, 24 Feb 2023 19:12:21 +0800 Subject: [PATCH] Description: change part name for ui. utils. surface, wms IssueNo: https://gitee.com/openharmony/graphic_ui/issues/I6HNEC Feature or Bugfix: Feature Binary Source:No Signed-off-by: zhouyj Change-Id: I3d5a9f7dd918cff3624c6f8df6e3f09d7b73c9be --- 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 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frameworks/ability_lite/BUILD.gn b/frameworks/ability_lite/BUILD.gn index d61d603..a09a6bf 100644 --- a/frameworks/ability_lite/BUILD.gn +++ b/frameworks/ability_lite/BUILD.gn @@ -87,7 +87,7 @@ lite_library("ability") { cflags_cc = cflags if (enable_ohos_appexecfwk_feature_ability == true) { - public_deps += [ "//foundation/graphic/ui:lite_ui" ] + public_deps += [ "//foundation/arkui/ui_lite:ui_lite" ] } include_dirs = [ @@ -104,8 +104,8 @@ lite_library("ability") { "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", "//foundation/communication/ipc/ipc/native/c/manager/include", "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store/include", - "//foundation/graphic/surface/interfaces/kits", - "//foundation/graphic/ui/frameworks", + "//foundation/graphic/surface_lite/interfaces/kits", + "//foundation/arkui/ui_lite/frameworks", "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/samgr", "//third_party/bounds_checking_function/include", diff --git a/frameworks/ability_lite/example/BUILD.gn b/frameworks/ability_lite/example/BUILD.gn index dbd65ed..538e77d 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", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", - "//foundation/graphic/utils/interfaces/innerkits", - "//foundation/graphic/ui/interfaces/kits", - "//foundation/graphic/utils/interfaces/kits/gfx_utils", + "//foundation/graphic/graphic_utils_lite/interfaces/innerkits", + "//foundation/arkui/ui_lite/interfaces/kits", + "//foundation/graphic/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 += [ "//foundation/graphic/ui:lite_ui" ] + deps += [ "//foundation/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 a8cf167..7f815d8 100644 --- a/services/abilitymgr_lite/BUILD.gn +++ b/services/abilitymgr_lite/BUILD.gn @@ -99,7 +99,7 @@ lite_library("abilityms") { } if (enable_ohos_appexecfwk_feature_ability == true) { - deps += [ "//foundation/graphic/surface" ] + deps += [ "//foundation/graphic/surface_lite" ] defines += [ "ABILITY_WINDOW_SUPPORT" ] } } @@ -140,7 +140,7 @@ lite_library("abilityms") { "//commonlibrary/utils_lite/memory/include", "//foundation/ability/dmsfwk_lite/interfaces/innerkits", "//foundation/communication/ipc/interfaces/innerkits/c/ipc/include", - "//foundation/graphic/wms/interfaces/innerkits", + "//foundation/window/window_manager_lite/interfaces/innerkits", "//foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry", "//foundation/systemabilitymgr/samgr_lite/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 f424e91..f726043 100644 --- a/services/abilitymgr_lite/tools/BUILD.gn +++ b/services/abilitymgr_lite/tools/BUILD.gn @@ -52,9 +52,9 @@ executable("aa") { if (enable_ohos_appexecfwk_feature_ability == true) { deps += [ - "//foundation/graphic/surface", - "//foundation/graphic/ui:lite_ui", - "//foundation/graphic/utils:lite_graphic_utils", + "//foundation/graphic/surface_lite", + "//foundation/arkui/ui_lite:ui_lite", + "//foundation/graphic/graphic_utils_lite:graphic_utils_lite", ] } include_dirs = [ -- Gitee