Remove redundant dependencies

Signed-off-by: Dai Li <daili12@huawei.com>
This commit is contained in:
Dai Li
2022-08-25 17:40:36 +08:00
parent c0d59aadb3
commit f835460f2c
4 changed files with 7 additions and 25 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
模型处理模块,主要负责提供各个子过程的调节调度算法。
滑动场景策略模块,主要负责针对滑动场景,使用模型处理处理模块的算法接口提供应用主线程绘帧策略,进行场景化精细调度。
滑动场景策略模块,主要负责针对滑动场景,使用模型处理模块的算法接口提供应用主线程绘帧策略,进行场景化精细调度。
- **帧感知调度机制组件**:主要分为事件处理模块、应用管控模块、调度参数管控模块和RTGRelated-Thread-Group)分组管理模块,四者构成应用线程调度机制。其中:
-1
View File
@@ -24,7 +24,6 @@
"deps": {
"components": [
"libeventhandler",
"ipc_core",
"samgr_proxy",
"system_ability_fwk"
],
-4
View File
@@ -46,10 +46,8 @@ ohos_shared_library("frame_ui_intf") {
external_deps = [
"c_utils:utils",
"dsoftbus:softbus_client",
"hitrace_native:hitrace_meter",
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
]
subsystem_name = "resourceschedule"
@@ -84,11 +82,9 @@ ohos_shared_library("frame_msg_intf") {
external_deps = [
"c_utils:utils",
"dsoftbus:softbus_client",
"eventhandler:libeventhandler",
"hitrace_native:hitrace_meter",
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
]
subsystem_name = "resourceschedule"
+6 -19
View File
@@ -21,18 +21,7 @@ module_output_path = "frameawareschedtest/"
frame_aware_sched_configs =
[ "${innerkits_path}/frameintf:frame_msg_intf_config" ]
frame_aware_sched_deps = [
"${innerkits_path}/frameintf:frame_msg_intf",
"${innerkits_path}/frameintf:frame_ui_intf",
"//base/hiviewdfx/hilog/interfaces/native/innerkits:libhilog",
"//commonlibrary/c_utils/base:utils",
]
frame_aware_sched_external_deps = [
"eventhandler:libeventhandler",
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
]
frame_aware_sched_deps = [ "${innerkits_path}/frameintf:frame_msg_intf" ]
frame_aware_sched_public_deps = [ "//third_party/googletest:gtest_main" ]
@@ -42,10 +31,7 @@ ohos_unittest("frame_ui_intf_test") {
sources = [ "unittest/phone/frame_ui_intf_test.cpp" ]
deps = frame_aware_sched_deps
if (is_standard_system) {
external_deps = frame_aware_sched_external_deps
public_deps = frame_aware_sched_public_deps
}
part_name = "frame_aware_sched"
@@ -57,12 +43,14 @@ ohos_unittest("frame_msg_intf_test") {
sources = [ "unittest/phone/frame_msg_intf_test.cpp" ]
include_dirs = [
"//base/hiviewdfx/hiview/adapter/utility/include/extra/",
"//base/notification/eventhandler/interfaces/inner_api/",
]
configs = frame_aware_sched_configs
deps = frame_aware_sched_deps
if (is_standard_system) {
external_deps = frame_aware_sched_external_deps
public_deps = frame_aware_sched_public_deps
}
@@ -80,7 +68,6 @@ ohos_unittest("rtg_interface_test") {
deps = frame_aware_sched_deps
if (is_standard_system) {
external_deps = frame_aware_sched_external_deps
public_deps = frame_aware_sched_public_deps
}