From ee6a904bb6e6590c438a56234f8fed3a4ff03e49 Mon Sep 17 00:00:00 2001 From: zhouyj Date: Wed, 19 Apr 2023 17:32:00 +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 Change-Id: If532dcad50970323be00af8c8c66d8644e3ccb57 --- BUILD.gn | 8 ++++---- README.md | 10 +++++----- README_zh.md | 10 +++++----- bundle.json | 14 +++++++------- test/BUILD.gn | 30 +++++++++++++++--------------- 5 files changed, 36 insertions(+), 36 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 9e8b1d0..3aaeb9c 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -30,8 +30,8 @@ commonDeps = [ "//foundation/systemabilitymgr/samgr_lite/samgr:samgr", "//foundation/systemabilitymgr/samgr_lite/communication/broadcast:broadcast", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", - "//foundation/graphic/surface:surface", - "//foundation/graphic/utils:graphic_utils_lite", + "//foundation/graphic/surface_lite:surface", + "//foundation/graphic/graphic_utils_lite:utils_lite", "//third_party/bounds_checking_function:libsec_shared", ] @@ -47,7 +47,7 @@ shared_library("wms_client") { "frameworks/wms/lite_wms_client.cpp", ] deps = commonDeps - public_deps = [ "//foundation/graphic/surface:surface_lite" ] + public_deps = [ "//foundation/graphic/surface_lite:surface_lite" ] public_configs = [ ":wms_public_config" ] ldflags = [ "-lstdc++" ] cflags = [ "-Wall" ] @@ -96,7 +96,7 @@ executable("wms_server") { deps = [ "//base/security/permission_lite/services/pms_client:pms_client", "//drivers/peripheral/input/hal:hdi_input", - "//foundation/graphic/utils:lite_graphic_hals", + "//foundation/graphic/graphic_utils_lite:lite_graphic_hals", ] deps += commonDeps cflags = [ "-Wall" ] diff --git a/README.md b/README.md index 1d46842..eb2347b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The graphics service uses the client/server \(C/S\) architecture and is divided ## Directory Structure ``` -/foundation/graphic/wms +/foundation/window/window_manager_lite ├── frameworks # Client │ ├── ims # Input event management service client │ └── wms # Window management service client @@ -53,10 +53,10 @@ hb build window_manager_lite [Graphic subsystem](https://gitee.com/openharmony/docs/blob/master/en/readme/graphics.md) -**graphic_wms** +**window_manager_lite** -[graphic_surface](https://gitee.com/openharmony/graphic_surface/blob/master/README.md) +[graphic_surface_lite](https://gitee.com/openharmony/graphic_surface_lite/blob/master/README.md) -[graphic_ui](https://gitee.com/openharmony/graphic_ui/blob/master/README.md) +[arkui_ui_lite](https://gitee.com/openharmony/arkui_ui_lite/blob/master/README.md) -[graphic_utils](https://gitee.com/openharmony/graphic_utils/blob/master/README.md) \ No newline at end of file +[graphic_graphic_utils_lite](https://gitee.com/openharmony/graphic_graphic_utils_lite/blob/master/README.md) \ No newline at end of file diff --git a/README_zh.md b/README_zh.md index a981474..ff5675a 100644 --- a/README_zh.md +++ b/README_zh.md @@ -23,7 +23,7 @@ ## 目录 ``` -/foundation/graphic/wms +/foundation/window/window_manager_lite ├── frameworks # 客户端 │ ├── ims # 输入管理客户端 │ └── wms # 窗口管理服务客户端 @@ -53,10 +53,10 @@ hb build window_manager_lite [图形子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/%E5%9B%BE%E5%BD%A2%E5%AD%90%E7%B3%BB%E7%BB%9F.md) -**graphic_wms** +**window_manager_lite** -[graphic_surface](https://gitee.com/openharmony/graphic_surface/blob/master/README_zh.md) +[graphic_surface_lite](https://gitee.com/openharmony/graphic_surface_lite/blob/master/README.md) -[graphic_ui](https://gitee.com/openharmony/graphic_ui/blob/master/README_zh.md) +[arkui_ui_lite](https://gitee.com/openharmony/arkui_ui_lite/blob/master/README.md) -[graphic_utils](https://gitee.com/openharmony/graphic_utils/blob/master/README_zh.md) \ No newline at end of file +[graphic_graphic_utils_lite](https://gitee.com/openharmony/graphic_graphic_utils_lite/blob/master/README.md) \ No newline at end of file diff --git a/bundle.json b/bundle.json index 88ff404..8804bd0 100644 --- a/bundle.json +++ b/bundle.json @@ -5,14 +5,14 @@ "license": "Apache License 2.0", "pubiishAs": "code-segment", "segment": { - "destPath": "foundation/graphic/wms" + "destPath": "foundation/window/window_manager_lite" }, "dirs": {}, "scripts": {}, "component": { - "name": "wms", - "subsystem": "graphic", - "syscap": [ "SystemCapability.Graphic.Wms" ], + "name": "window_manager_lite", + "subsystem": "window", + "syscap": [ "SystemCapability.Window.WindowManagerLite" ], "feature": [], "adapted_system_type": [ "small" ], "rom": "110KB", @@ -24,15 +24,15 @@ "components": [ "hilog_lite", "samgr_lite", - "surface", + "surface_lite", "peripheral_display", "peripheral_input" ] }, "build": { "sub_component": [ - "//foundation/graphic/wms:window_manager_lite", - "//foundation/graphic/wms/test:window_manager_lite_test" + "//foundation/window/window_manager_lite:window_manager_lite", + "//foundation/window/window_manager_lite/test:window_manager_lite_test" ], "inner_kits": [], "test": [] diff --git a/test/BUILD.gn b/test/BUILD.gn index d849481..042d3fe 100755 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -26,8 +26,8 @@ if (ohos_build_type == "debug") { executable("sample_ui") { sources = [ "sample_ui.cpp" ] include_dirs = [ - "//foundation/graphic/ui/frameworks", - "//foundation/graphic/ui/test/framework", + "//foundation/arkui/ui_lite/frameworks", + "//foundation/arkui/ui_lite/test/framework", "//third_party/freetype/include", ] ldflags = [ @@ -37,9 +37,9 @@ if (ohos_build_type == "debug") { ] deps = [ - "//foundation/graphic/ui/test/framework:lite_graphic_test_framework", - "//foundation/graphic/utils:lite_graphic_hals", - "//foundation/graphic/wms:wms_client", + "//foundation/arkui/ui_lite/test/framework:lite_graphic_test_framework", + "//foundation/graphic/graphic_utils_lite:lite_graphic_hals", + "//foundation/window/window_manager_lite:wms_client", ] output_dir = "$root_out_dir/dev_tools" } @@ -47,8 +47,8 @@ if (ohos_build_type == "debug") { executable("sample_auto_ui") { sources = [ "sample_ui.cpp" ] include_dirs = [ - "//foundation/graphic/ui/frameworks", - "//foundation/graphic/ui/test/framework", + "//foundation/arkui/ui_lite/frameworks", + "//foundation/arkui/ui_lite/test/framework", "//third_party/freetype/include", ] ldflags = [ @@ -57,9 +57,9 @@ if (ohos_build_type == "debug") { "-Wl,-rpath-link=$ohos_root_path/$root_out_dir", ] deps = [ - "//foundation/graphic/ui/test/framework:auto_framework", - "//foundation/graphic/utils:lite_graphic_hals", - "//foundation/graphic/wms:wms_client", + "//foundation/arkui/ui_lite/test/framework:auto_framework", + "//foundation/graphic/graphic_utils_lite:lite_graphic_hals", + "//foundation/window/window_manager_lite:wms_client", ] output_dir = "$root_out_dir/dev_tools" @@ -67,13 +67,13 @@ if (ohos_build_type == "debug") { executable("sample_window") { sources = [ - "//foundation/graphic/ui/test/framework/common/ui_text_language.cpp", + "//foundation/arkui/ui_lite/test/framework/common/ui_text_language.cpp", "sample_window.cpp", ] include_dirs = [ - "//foundation/graphic/ui/frameworks", - "//foundation/graphic/ui/test/framework", - "//foundation/graphic/surface/interfaces/kits", + "//foundation/arkui/ui_lite/frameworks", + "//foundation/arkui/ui_lite/test/framework", + "//foundation/graphic/surface_lite/interfaces/kits", "//third_party/freetype/include", ] ldflags = [ @@ -82,7 +82,7 @@ if (ohos_build_type == "debug") { "-Wl,-rpath-link=$ohos_root_path/$root_out_dir", ] - deps = [ "//foundation/graphic/ui:ui_lite" ] + deps = [ "//foundation/arkui/ui_lite:ui_lite" ] output_dir = "$root_out_dir/dev_tools" } } -- Gitee