# Copyright (C) 2021-2022 Huawei Device Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import("//build/ohos.gni") TELEPHONY_CELLULAR_CALL_ROOT = "../.." ohos_shared_library("tel_ims") { sources = [ "services/ims_call/src/ims_call.cpp", "services/ims_call/src/ims_call_stub.cpp", "services/ims_core_service/src/ims_core_service.cpp", "services/ims_core_service/src/ims_core_service_stub.cpp", "services/ims_sms/src/ims_sms.cpp", "services/ims_sms/src/ims_sms_stub.cpp", ] include_dirs = [ "services/ims_base/include", "services/ims_core_service/include", "services/ims_call/include", "services/ims_sms/include", ] defines = [ "TELEPHONY_LOG_TAG = \"ImsService\"", "LOG_DOMAIN = 0xD001F09", ] deps = [ "${TELEPHONY_CELLULAR_CALL_ROOT}:tel_cellular_call", "${TELEPHONY_CELLULAR_CALL_ROOT}/interfaces/innerkits/ims:tel_ims_call_api", ] external_deps = [ "c_utils:utils", "call_manager:tel_call_manager_api", "core_service:tel_core_service_api", "eventhandler:libeventhandler", "hilog:libhilog", "init:libbegetutil", "ipc:ipc_single", "safwk:system_ability_fwk", "samgr:samgr_proxy", "sms_mms:tel_sms_mms_api", ] part_name = "cellular_call" subsystem_name = "telephony" }