mirror of
https://gitee.com/openharmony/deviceprofile_device_info_manager
synced 2024-12-13 10:47:26 +00:00
670810e57b
Signed-off-by: guoyi <guoyi39@huawei.com>
80 lines
2.3 KiB
Plaintext
80 lines
2.3 KiB
Plaintext
# Copyright (c) 2021-2024 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")
|
|
import("//build/ohos_var.gni")
|
|
import("//foundation/deviceprofile/device_info_manager/deviceprofile.gni")
|
|
|
|
config("distributed_device_profile_common_config") {
|
|
visibility = [ ":*" ]
|
|
include_dirs = [
|
|
"include/interfaces",
|
|
"include/constants",
|
|
"include/utils",
|
|
]
|
|
}
|
|
|
|
ohos_shared_library("distributed_device_profile_common") {
|
|
branch_protector_ret = "pac_ret"
|
|
|
|
sanitize = {
|
|
boundary_sanitize = true
|
|
integer_overflow = true
|
|
ubsan = true
|
|
debug = false
|
|
}
|
|
|
|
install_enable = true
|
|
|
|
sources = [
|
|
"src/interfaces/access_control_profile.cpp",
|
|
"src/interfaces/accessee.cpp",
|
|
"src/interfaces/accesser.cpp",
|
|
"src/interfaces/characteristic_profile.cpp",
|
|
"src/interfaces/device_profile.cpp",
|
|
"src/interfaces/dp_subscribe_info.cpp",
|
|
"src/interfaces/dp_sync_options.cpp",
|
|
"src/interfaces/profile_change_listener_proxy.cpp",
|
|
"src/interfaces/profile_change_listener_stub.cpp",
|
|
"src/interfaces/service_profile.cpp",
|
|
"src/interfaces/sync_completed_callback_proxy.cpp",
|
|
"src/interfaces/sync_completed_callback_stub.cpp",
|
|
"src/interfaces/trust_device_profile.cpp",
|
|
"src/utils/content_sensor_manager_utils.cpp",
|
|
"src/utils/ipc_utils.cpp",
|
|
"src/utils/profile_utils.cpp",
|
|
]
|
|
|
|
deps = []
|
|
|
|
public_configs = [ ":distributed_device_profile_common_config" ]
|
|
|
|
external_deps = [
|
|
"access_token:libaccesstoken_sdk",
|
|
"cJSON:cjson",
|
|
"c_utils:utils",
|
|
"device_manager:devicemanagersdk",
|
|
"dmsfwk:common_sdk",
|
|
"eventhandler:libeventhandler",
|
|
"hilog:libhilog",
|
|
"init:libbegetutil",
|
|
"ipc:ipc_core",
|
|
"relational_store:native_rdb",
|
|
"safwk:system_ability_fwk",
|
|
"samgr:samgr_proxy",
|
|
]
|
|
|
|
part_name = "device_info_manager"
|
|
subsystem_name = "deviceprofile"
|
|
}
|