From 0cf13b2858cfb80fbe4d8acdf2bdcc923ce4f4d4 Mon Sep 17 00:00:00 2001 From: zhangwt3652 Date: Thu, 31 Jul 2025 16:55:07 +0800 Subject: [PATCH] Fix taihe deps order Signed-off-by: zhangwt3652 Change-Id: Ifd9c567d32f4f58b908b36d7539f8b709cc039d3 --- frameworks/taihe/system_sound_manager/BUILD.gn | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/frameworks/taihe/system_sound_manager/BUILD.gn b/frameworks/taihe/system_sound_manager/BUILD.gn index 063ae6309..50b09d4b8 100644 --- a/frameworks/taihe/system_sound_manager/BUILD.gn +++ b/frameworks/taihe/system_sound_manager/BUILD.gn @@ -26,8 +26,22 @@ copy_taihe_idl("copy_system_sound_manager_taihe") { sources = [ "//foundation/multimedia/player_framework/frameworks/taihe/idl/ohos.multimedia.systemSoundManager.taihe", "//foundation/multimedia/player_framework/frameworks/taihe/idl/ohos.multimedia.systemSoundManager.context.taihe", + ] + deps = [ + ":copy_system_tone_player_taihe", + ":copy_ringtone_player_taihe", + ] +} + +copy_taihe_idl("copy_system_tone_player_taihe") { + sources = [ "//foundation/multimedia/player_framework/frameworks/taihe/idl/systemTonePlayer.taihe", - "//foundation/multimedia/player_framework/frameworks/taihe/idl/ringtonePlayer.taihe" + ] +} + +copy_taihe_idl("copy_ringtone_player_taihe") { + sources = [ + "//foundation/multimedia/player_framework/frameworks/taihe/idl/ringtonePlayer.taihe", ] } -- Gitee