diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 80de028df148207f5e1a4845d04610fd30120140..e35a2590506c5232bdf369bdbe1dc2f1499fddad 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,4 +1,4 @@ # RELEASE-NOTES # 1.0.0 -1. Initial version \ No newline at end of file +1. Initial version diff --git a/bundle.json b/bundle.json index db26336bb624d422dbded37c967652d6d2b46495..5f91db18ec05c336a94e4af74bec3f73e03a45bd 100644 --- a/bundle.json +++ b/bundle.json @@ -25,14 +25,18 @@ "components": [ "ability_base", "ability_runtime", - "libeventhandler", - "ipc_single", - "samgr", - "system_ability_fwk" + "c_utils", + "eventhandler", + "frame_aware_sched", + "hitrace_native", + "hiviewdfx_hilog_native", + "ipc", + "safwk", + "samgr" ], "third_party": [ - "xml2", - "json" + "json", + "jsoncpp" ] }, "build": { diff --git a/patches/patches.json b/patches/patches.json new file mode 100644 index 0000000000000000000000000000000000000000..3764e61c4d14bc495a0410a3b3faf49af1b4a93e --- /dev/null +++ b/patches/patches.json @@ -0,0 +1,9 @@ +{ + "patches": [ + { + "project":"productdefine_common", + "patch_file":"rich.patch", + "path":"productdefine/common" + } + ] +} \ No newline at end of file diff --git a/patches/rich.patch b/patches/rich.patch new file mode 100644 index 0000000000000000000000000000000000000000..e733aae4e1f90f7dd5f99d4baf094415b73d20b5 --- /dev/null +++ b/patches/rich.patch @@ -0,0 +1,15 @@ +diff --git a/inherit/rich.json b/inherit/rich.json +index 324d061..bfc9604 100644 +--- a/inherit/rich.json ++++ b/inherit/rich.json +@@ -872,6 +872,10 @@ + "component": "frame_aware_sched", + "features": [] + }, ++ { ++ "component": "qos_manager", ++ "features": [] ++ }, + { + "component": "device_usage_statistics", + "features": [] diff --git a/services/BUILD.gn b/services/BUILD.gn index e70096687d3f0f6c08621796ef5630b3860e39c6..0ea6add597aa778040c73dc683b790c0b1ea569e 100644 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -24,7 +24,6 @@ config("concurrent_task_config") { "//foundation/resourceschedule/frame_aware_sched/common/include/", "//utils/system/safwk/native/include", "//commonlibrary/c_utils/base/include", - "//third_party/libxml2/include", "//third_party/jsoncpp/include", ] } @@ -45,14 +44,13 @@ ohos_shared_library("concurrentsvc") { ] deps = [ - "//foundation/resourceschedule/frame_aware_sched/interfaces/innerkits/frameintf:rtg_interface", "//third_party/jsoncpp:jsoncpp", - "//third_party/libxml2:xml2", ] external_deps = [ "c_utils:utils", "eventhandler:libeventhandler", + "frame_aware_sched:rtg_interface", "hiviewdfx_hilog_native:libhilog", "ipc:ipc_single", "safwk:system_ability_fwk",