cmeDelete

Signed-off-by: wangkailong <wangkailong6@huawei.com>
Change-Id: I96da8494784fc522671eb98bd4d8819afe64fd66
This commit is contained in:
wangkailong 2022-12-17 17:37:05 +08:00
parent 0922d8e5b3
commit 513d78524a
3 changed files with 8 additions and 2 deletions

View File

@ -40,7 +40,10 @@
"syscap": [
"SystemCapability.Notification.CommonEvent"
],
"features": ["common_event_service_with_graphics"],
"features": [
"common_event_service_with_graphics",
"common_event_service_tool_cem_enable"
],
"hisysevent_config": [
"//base/notification/common_event_service/hisysevent.yaml"
],

View File

@ -43,6 +43,7 @@ ces_services_path = "${services_path}"
declare_args() {
common_event_service_with_graphics = true
has_hisysevent_part = true
common_event_service_tool_cem_enable = true
if (!defined(global_parts_info) ||
defined(global_parts_info.account_os_account)) {

View File

@ -15,7 +15,9 @@ import("//base/notification/common_event_service/event.gni")
import("//build/ohos.gni")
group("tools_target") {
deps = [ "cem:tools_cem" ]
if (common_event_service_tool_cem_enable) {
deps = [ "cem:tools_cem" ]
}
}
group("systemtest") {