diff --git a/BUILD.gn b/BUILD.gn index bb95d5c..cf91d88 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -40,7 +40,7 @@ shared_library("surface") { "//drivers/peripheral/display/interfaces/include", ] public_configs = [ ":surface_public_config" ] - public_deps = [ "//foundation/graphic/utils:graphic_utils_lite" ] + public_deps = [ "//foundation/graphic/graphic_utils_lite:utils_lite" ] deps = [ "//drivers/peripheral/display/hal:hdi_display", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", @@ -60,6 +60,6 @@ config("surface_public_config") { include_dirs = [ "interfaces/innerkits", "interfaces/kits", - "//foundation/graphic/utils/interfaces/kits", + "//foundation/graphic/graphic_utils_lite/interfaces/kits", ] } diff --git a/README.md b/README.md index b7a3a6c..730ba60 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A surface transfers data across processes through control structures such as Int ## Directory Structure ``` -/foundation/graphic/surface +/foundation/graphic/surface_lite ├── frameworks # Framework code ├── interfaces # APIs │ ├── innerkits # APIs between modules @@ -57,16 +57,16 @@ The consumer obtains the buffer from the dirty queue, synthesizes graphics data, ### Usage -For details, see lite [WMS](https://gitee.com/openharmony/graphic_wms/blob/master/README.md). +For details, see lite [WMS](https://gitee.com/openharmony/window_window_manager_lite/blob/master/README.md). ## Repositories Involved [Graphic subsystem](https://gitee.com/openharmony/docs/blob/master/en/readme/graphics.md) -[graphic_wms](https://gitee.com/openharmony/graphic_wms/blob/master/README.md) +[window_window_manager_lite](https://gitee.com/openharmony/window_window_manager_lite/blob/master/README.md) -**graphic_surface** +**graphic_surface_lite** -[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 d141038..a7a86b7 100644 --- a/README_zh.md +++ b/README_zh.md @@ -21,7 +21,7 @@ Surface的跨进程传输使用IPC传输句柄等控制结构(有拷贝), ## 目录 ``` -/foundation/graphic/surface +/foundation/graphic/surface_lite ├── frameworks # 框架代码 ├── interfaces # 接口 │ ├── innerkits # 模块间接口 @@ -57,16 +57,16 @@ hb build surface_lite ### 使用说明 -可参考轻量图形[WMS组件](https://gitee.com/openharmony/graphic_wms/blob/master/README_zh.md)。 +可参考轻量图形[WMS组件](https://gitee.com/openharmony/window_window_manager_lite/blob/master/README_zh.md)。 ## 相关仓 [图形子系统](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](https://gitee.com/openharmony/graphic_wms/blob/master/README_zh.md) +[window_window_manager_lite](https://gitee.com/openharmony/window_window_manager_lite/blob/master/README.md) -**graphic_surface** +**graphic_surface_lite** -[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 ed9a82a..d3ec189 100644 --- a/bundle.json +++ b/bundle.json @@ -5,14 +5,14 @@ "license": "Apache License 2.0", "pubiishAs": "code-segment", "segment": { - "destPath": "foundation/graphic/surface" + "destPath": "foundation/graphic/surface_lite" }, "dirs": {}, "scripts": {}, "component": { - "name": "surface", + "name": "surface_lite", "subsystem": "graphic", - "syscap": [ "SystemCapability.Graphic.Surface" ], + "syscap": [ "SystemCapability.Graphic.SurfaceLite" ], "feature": [], "adapted_system_type": [ "small" ], "rom": "110KB", @@ -29,8 +29,8 @@ }, "build": { "sub_component": [ - "//foundation/graphic/surface:surface_lite", - "//foundation/graphic/surface/test:surface_lite_test" ], + "//foundation/graphic/surface_lite:surface_lite", + "//foundation/graphic/surface_lite/test:surface_lite_test" ], "inner_kits": [], "test": [] } diff --git a/test/BUILD.gn b/test/BUILD.gn index 79e9449..eb9512d 100644 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -24,7 +24,7 @@ if (ohos_build_type == "debug") { sources = [ "unittest/graphic_surface_test.cpp" ] deps = [ "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", - "//foundation/graphic/surface:surface", + "//foundation/graphic/surface_lite:surface", ] } }