1# Copyright (c) 2021-2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/ohos.gni") 15import("//foundation/multimedia/audio_framework/multimedia_aafwk.gni") 16 17ohos_shared_library("audio_ringtone_client") { 18 sanitize = { 19 cfi = true 20 debug = false 21 blocklist = "//foundation/multimedia/audio_framework/cfi_blocklist.txt" 22 } 23 install_enable = true 24 sources = [ "audio_ringtone_manager.cpp" ] 25 26 include_dirs = [ 27 "//foundation/multimedia/audio_framework/interfaces/inner_api/native/audioringtone/include", 28 "//foundation/multimedia/audio_framework/frameworks/native/ringtoneplayer/include", 29 "//foundation/multimedia/audio_framework/services/audio_service/client/include", 30 "//foundation/multimedia/audio_framework/interfaces/inner_api/native/audiocommon/include", 31 "//foundation/multimedia/media_library/interfaces/inner_api/media_library_helper/include", 32 "//foundation/multimedia/media_library/frameworks/utils/include", 33 ] 34 35 deps = [ 36 "${ability_runtime_path}/frameworks/native/ability/native:data_ability_helper", 37 "${ability_runtime_path}/frameworks/native/appkit:appkit_native", 38 "//foundation/graphic/graphic_2d/frameworks/surface:surface", 39 "//foundation/multimedia/player_framework/interfaces/inner_api/native:media_client", 40 ] 41 42 external_deps = [ 43 "ability_base:want", 44 "ability_base:zuri", 45 "ability_runtime:ability_manager", 46 "ability_runtime:abilitykit_native", 47 "bundle_framework:appexecfwk_base", 48 "hiviewdfx_hilog_native:libhilog", 49 "relational_store:native_dataability", 50 "relational_store:native_rdb", 51 ] 52 53 cflags = [ 54 "-Wall", 55 "-Werror", 56 ] 57 58 subsystem_name = "multimedia" 59 part_name = "multimedia_player_framework" 60} 61