From cd3836f5488b901a4035fc37899d6555b3d27f33 Mon Sep 17 00:00:00 2001 From: edwardcaoyue Date: Tue, 30 May 2023 20:18:56 +0800 Subject: [PATCH] rename project Signed-off-by: edwardcaoyue --- README_zh.md | 4 ++-- bundle.json | 22 +++++++++++----------- etc/init/BUILD.gn | 2 +- frameworks/concurrent_task_client/BUILD.gn | 2 +- sa_profile/BUILD.gn | 2 +- services/BUILD.gn | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README_zh.md b/README_zh.md index b2f3912..ed9633e 100644 --- a/README_zh.md +++ b/README_zh.md @@ -7,7 +7,7 @@ ## 目录 ``` -//foundation/resourceschedule/resourceschedule_qos_manager +//foundation/resourceschedule/qos_manager ├── etc │ └── init # 权限管控服务配置文件 | @@ -50,7 +50,7 @@ 系统开发者可以通过配置productdefine/common/products下的产品定义json文件,增加或移除本部件,来启用或停用本部件: ``` -"resourceschedule:resourceschedule_qos_manager":{} +"qos_manager:concurrent_task_client":{} ``` ## 相关仓 diff --git a/bundle.json b/bundle.json index 80a435b..db26336 100644 --- a/bundle.json +++ b/bundle.json @@ -1,16 +1,16 @@ { - "name": "@ohos/resourceschedule_qos_manager", - "description": "resourceschedule_qos_manager", + "name": "@ohos/qos_manager", + "description": "qos_manager", "version": "3.1", "license": "Apache License 2.0", "publishAs": "code-segment", "segment": { - "destPath": "foundation/resourceschedule/resourceschedule_qos_manager" + "destPath": "foundation/resourceschedule/qos_manager" }, "dirs": {}, "scripts": {}, "component": { - "name": "resourceschedule_qos_manager", + "name": "qos_manager", "subsystem": "resourceschedule", "syscap": [], "features": [], @@ -37,24 +37,24 @@ }, "build": { "sub_component": [ - "//foundation/resourceschedule/resourceschedule_qos_manager/etc/init:concurrent_task_service.cfg", - "//foundation/resourceschedule/resourceschedule_qos_manager/sa_profile:concurrent_task_sa_profile", - "//foundation/resourceschedule/resourceschedule_qos_manager/services:concurrentsvc", - "//foundation/resourceschedule/resourceschedule_qos_manager/frameworks/concurrent_task_client:concurrent_task_client" + "//foundation/resourceschedule/qos_manager/etc/init:concurrent_task_service.cfg", + "//foundation/resourceschedule/qos_manager/sa_profile:concurrent_task_sa_profile", + "//foundation/resourceschedule/qos_manager/services:concurrentsvc", + "//foundation/resourceschedule/qos_manager/frameworks/concurrent_task_client:concurrent_task_client" ], "inner_kits": [ { "header": { - "header_base": "//foundation/resourceschedule/resourceschedule_qos_manager/interfaces/inner_api/", + "header_base": "//foundation/resourceschedule/qos_manager/interfaces/inner_api/", "header_files": [ "concurrent_task_client.h" ] }, - "name": "//foundation/resourceschedule/resourceschedule_qos_manager/frameworks/concurrent_task_client:concurrent_task_client" + "name": "//foundation/resourceschedule/qos_manager/frameworks/concurrent_task_client:concurrent_task_client" } ], "test": [ - "//foundation/resourceschedule/resourceschedule_qos_manager/test:concurrent_unittest" + "//foundation/resourceschedule/qos_manager/test:concurrent_unittest" ] } } diff --git a/etc/init/BUILD.gn b/etc/init/BUILD.gn index 4fc262a..88f8dd1 100644 --- a/etc/init/BUILD.gn +++ b/etc/init/BUILD.gn @@ -23,5 +23,5 @@ ohos_prebuilt_etc("concurrent_task_service.cfg") { source = "concurrent_task_service.cfg" relative_install_dir = "init" subsystem_name = "resourceschedule" - part_name = "resourceschedule_qos_manager" + part_name = "qos_manager" } diff --git a/frameworks/concurrent_task_client/BUILD.gn b/frameworks/concurrent_task_client/BUILD.gn index 4a9949e..ac17c97 100644 --- a/frameworks/concurrent_task_client/BUILD.gn +++ b/frameworks/concurrent_task_client/BUILD.gn @@ -58,5 +58,5 @@ ohos_shared_library("concurrent_task_client") { ] subsystem_name = "resourceschedule" - part_name = "resourceschedule_qos_manager" + part_name = "qos_manager" } diff --git a/sa_profile/BUILD.gn b/sa_profile/BUILD.gn index 725f2f1..d2d30a8 100644 --- a/sa_profile/BUILD.gn +++ b/sa_profile/BUILD.gn @@ -16,5 +16,5 @@ import("//build/ohos/sa_profile/sa_profile.gni") ohos_sa_profile("concurrent_task_sa_profile") { sources = [ "1912.xml" ] - part_name = "resourceschedule_qos_manager" + part_name = "qos_manager" } diff --git a/services/BUILD.gn b/services/BUILD.gn index 123c5f1..e700966 100644 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -60,5 +60,5 @@ ohos_shared_library("concurrentsvc") { ] subsystem_name = "resourceschedule" - part_name = "resourceschedule_qos_manager" + part_name = "qos_manager" } -- Gitee