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 <zhouyuanjie1@huawei.com>

Change-Id: I2314044c5185c7991da6ce9e76b1cf8e8fcbee98
This commit is contained in:
zhouyj
2023-04-19 17:30:48 +08:00
parent 13250cf477
commit 0a0ee50215
5 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -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",
]
}
+6 -6
View File
@@ -21,7 +21,7 @@ A surface transfers data across processes through control structures such as Int
## Directory Structure<a name="section161941989596"></a>
```
/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<a name="section129654513264"></a>
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<a name="section1371113476307"></a>
[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)
[graphic_graphic_utils_lite](https://gitee.com/openharmony/graphic_graphic_utils_lite/blob/master/README.md)
+6 -6
View File
@@ -21,7 +21,7 @@ Surface的跨进程传输使用IPC传输句柄等控制结构(有拷贝),
## 目录<a name="section161941989596"></a>
```
/foundation/graphic/surface
/foundation/graphic/surface_lite
├── frameworks # 框架代码
├── interfaces # 接口
│ ├── innerkits # 模块间接口
@@ -57,16 +57,16 @@ hb build surface_lite
### 使用说明<a name="section129654513264"></a>
可参考轻量图形[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)。
## 相关仓<a name="section1371113476307"></a>
[图形子系统](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)
[graphic_graphic_utils_lite](https://gitee.com/openharmony/graphic_graphic_utils_lite/blob/master/README.md)
+5 -5
View File
@@ -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": []
}
+1 -1
View File
@@ -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",
]
}
}