Signed-off-by: ql <qianli16@huawei.com>
Change-Id: I22c370a5a4b1760b45d4c6664a1eee5b1b473fa0
This commit is contained in:
ql
2022-07-19 16:01:10 +08:00
parent 16edb962a0
commit e2859b2302
4 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ The source code directory structure of the Distributed Scheduler is as follows:
The code of the Distributed Scheduler is stored in the following directory:
```
foundation/distributedschedule/dmsfwk_lite
foundation/ability/dmsfwk_lite
```
When compiling and building the code for a specific platform, you need to specify the target platform.
+1 -1
View File
@@ -84,7 +84,7 @@
分布式任务调度模块,其代码所在目录如下:
```
foundation/distributedschedule/dmsfwk_lite
foundation/ability/dmsfwk_lite
```
在针对不同平台进行编译时,需要提前指定目标平台:
+6 -6
View File
@@ -7,13 +7,13 @@
"repository": "https://gitee.com/openharmony/distributedschedule_dms_fwk_lite",
"publishAs": "code-segment",
"segment": {
"destPath": "foundation/distributedschedule/dmsfwk_lite"
"destPath": "foundation/ability/dmsfwk_lite"
},
"dirs": {},
"scripts": {},
"component": {
"name": "dmsfwk_lite",
"subsystem": "distributedschedule",
"subsystem": "ability",
"adapted_system_type": [
"small"
],
@@ -36,18 +36,18 @@
},
"build": {
"sub_component": [
"//foundation/distributedschedule/dmsfwk_lite:dtbschedmgr",
"//foundation/distributedschedule/dmsfwk_lite/moduletest/dtbschedmgr_lite:distributed_schedule_test_dms_door"
"//foundation/ability/dmsfwk_lite:dtbschedmgr",
"//foundation/ability/dmsfwk_lite/moduletest/dtbschedmgr_lite:distributed_schedule_test_dms_door"
],
"inner_kits": [
{
"header": {
"header_base": "foundation/distributedschedule/dmsfwk_lite/interfaces/innerkits/",
"header_base": "foundation/ability/dmsfwk_lite/interfaces/innerkits/",
"header_files": [
"dmsfwk_interface.h"
]
},
"name": "//foundation/distributedschedule/dmsfwk_lite:dtbschedmgr"
"name": "//foundation/ability/dmsfwk_lite:dtbschedmgr"
}
]
}
+11 -11
View File
@@ -19,14 +19,14 @@ if (ohos_kernel_type == "liteos_a" || ohos_kernel_type == "linux") {
unittest("distributed_schedule_test_dms_door") {
output_extension = "bin"
sources = [
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_famgr.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_feature.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_msg_handler.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_packet.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_parser.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_permission.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_session.c",
"//foundation/distributedschedule/dmsfwk_lite/source/dmslite_tlv_common.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_famgr.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_feature.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_msg_handler.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_packet.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_parser.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_permission.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_session.c",
"//foundation/ability/dmsfwk_lite/source/dmslite_tlv_common.c",
"source/famgr_test.cpp",
"source/permission_test.cpp",
"source/tlv_parse_test.cpp",
@@ -45,8 +45,8 @@ if (ohos_kernel_type == "liteos_a" || ohos_kernel_type == "linux") {
"//foundation/communication/dsoftbus/interfaces/kits/bus_center",
"//foundation/communication/dsoftbus/interfaces/kits/common",
"//foundation/communication/dsoftbus/interfaces/kits/transport",
"//foundation/distributedschedule/dmsfwk_lite/include",
"//foundation/distributedschedule/dmsfwk_lite/interfaces/innerkits",
"//foundation/ability/dmsfwk_lite/include",
"//foundation/ability/dmsfwk_lite/interfaces/innerkits",
]
deps = [
@@ -57,7 +57,7 @@ if (ohos_kernel_type == "liteos_a" || ohos_kernel_type == "linux") {
"//foundation/distributedschedule/samgr_lite/samgr:samgr",
]
output_dir = "$root_out_dir/test/unittest/distributedschedule"
output_dir = "$root_out_dir/test/unittest/ability"
}
group("unittest") {
deps = [ ":distributed_schedule_test_dms_door" ]