mirror of
https://gitee.com/openharmony/print_print_fwk
synced 2024-11-23 17:09:46 +00:00
16d0dd77ff
Signed-off-by: @chuangda_1 <fangwanning@huawei.com>
81 lines
2.8 KiB
Plaintext
81 lines
2.8 KiB
Plaintext
# Copyright (c) 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")
|
|
|
|
config("print_service_config") {
|
|
visibility = [ ":*" ]
|
|
include_dirs = [
|
|
"include",
|
|
]
|
|
|
|
cflags_cc = [ "-fexceptions" ]
|
|
}
|
|
|
|
ohos_shared_library("print_service") {
|
|
sources = [
|
|
"src/print_service_ability.cpp",
|
|
"src/print_service_stub.cpp",
|
|
"src/print_callback_proxy.cpp",
|
|
"src/print_extension_callback_proxy.cpp",
|
|
"src/print_bms_death_recipient.cpp",
|
|
"src/print_bms_helper.cpp",
|
|
]
|
|
|
|
public_configs = [
|
|
"//commonlibrary/c_utils/base:utils_config",
|
|
":print_service_config",
|
|
]
|
|
include_dirs = [
|
|
"//commonlibrary/c_utils/base/include",
|
|
"//utils/system/safwk/native/include",
|
|
"//foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include",
|
|
"//base/notification/distributed_notification_service/interfaces/inner_api",
|
|
"//base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/include",
|
|
"//base/hiviewdfx/hitrace/interfaces/native/innerkits/include/hitrace_meter",
|
|
"//base/print/print/frameworks/innerkitsimpl/include",
|
|
"//base/print/print/utils/include",
|
|
]
|
|
deps = [
|
|
"//base/notification/distributed_notification_service/frameworks/ans:ans_innerkits",
|
|
"//base/telephony/core_service/interfaces/innerkits:tel_core_service_api",
|
|
"//foundation/communication/netmanager_base/interfaces/innerkits/netconnclient:net_conn_manager_if",
|
|
"//foundation/systemabilitymgr/safwk/interfaces/innerkits/safwk:system_ability_fwk",
|
|
"//foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy:samgr_proxy",
|
|
"//base/print/print/frameworks/innerkitsimpl:print_client",
|
|
]
|
|
|
|
external_deps = [
|
|
"ability_base:base",
|
|
"ability_base:want",
|
|
"ability_base:zuri",
|
|
"ability_runtime:ability_manager",
|
|
"ability_runtime:abilitykit_native",
|
|
"access_token:libaccesstoken_sdk",
|
|
"bundle_framework:appexecfwk_base",
|
|
"bundle_framework:appexecfwk_core",
|
|
"c_utils:utils",
|
|
"drivers_interface_ril:hril_innerkits",
|
|
"eventhandler:libeventhandler",
|
|
"hisysevent_native:libhisysevent",
|
|
"hitrace_native:hitrace_meter",
|
|
"hiviewdfx_hilog_native:libhilog",
|
|
"init:libbegetutil",
|
|
"ipc:ipc_core",
|
|
"os_account:os_account_innerkits",
|
|
"relational_store:native_rdb",
|
|
]
|
|
subsystem_name = "print"
|
|
part_name = "print"
|
|
}
|