#
# Copyright (c) 2021, Huawei Device Co., Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import("//drivers/adapter/khdf/liteos_m/hdf.gni")
module_switch = defined(LOSCFG_DRIVERS_HDF)
hdf_driver("hdf_core") {
sources = [
"$HDF_FRAMEWORKS_PATH/core/host/src/devhost_service.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/devmgr_service_clnt.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/devsvc_manager_clnt.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_device.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_device_node.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_device_object.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_device_token.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_driver_loader.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_observer_record.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_service_observer.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/hdf_service_subscriber.c",
"$HDF_FRAMEWORKS_PATH/core/host/src/power_state_token.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/devhost_service_clnt.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/device_token_clnt.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/devmgr_service.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/devsvc_manager.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/driver_manager.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/hdf_driver_installer.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/hdf_host_info.c",
"$HDF_FRAMEWORKS_PATH/core/manager/src/power_state_token_clnt.c",
"$HDF_FRAMEWORKS_PATH/core/shared/src/hdf_device_info.c",
"$HDF_FRAMEWORKS_PATH/core/shared/src/hdf_object_manager.c",
"$HDF_FRAMEWORKS_PATH/core/shared/src/hdf_service_record.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_cstring.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_map.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_sbuf.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_sbuf_impl_raw.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_slist.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hdf_sref.c",
"common/src/devmgr_service_start.c",
"common/src/devsmall_object_config.c",
"common/src/hdf_device_node_ext.c",
]
if (defined(LOSCFG_DRIVERS_HDF_CONFIG_MACRO)) {
sources += [ "$HDF_FRAMEWORKS_PATH/core/common/src/hdf_attribute_macro.c" ]
} else {
sources += [
"$HDF_FRAMEWORKS_PATH/core/common/src/buildin_config_entry.c",
"$HDF_FRAMEWORKS_PATH/core/common/src/hdf_attribute.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/device_resource_if.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/hcs_blob_if.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/hcs_buildin_parser.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/hcs_generate_tree.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/hcs_parser.c",
"$HDF_FRAMEWORKS_PATH/utils/src/hcs_parser/hcs_tree_if.c",
]
}
if (defined(LOSCFG_SHIELD_V200ZR_EVB_T1) &&
defined(LOSCFG_DRIVERS_HDF_CONFIG_MACRO)) {
deps = [ "//device/board/fnlink/shields" ]
}
if (defined(LOSCFG_DRIVERS_HDF_CONFIG_MACRO)) {
HDF_HCS_BUILD_PATH = rebase_path(
"//device/board/$device_company/$device_name/liteos_m/hdf_config")
cmd = "if [ -f ${HDF_HCS_BUILD_PATH}/BUILD.gn ]; then echo true; else echo false; fi"
HAVE_HCS_BUILD_PATH =
exec_script("//build/lite/run_shell_cmd.py", [ cmd ], "value")
if (HAVE_HCS_BUILD_PATH) {
deps = [ "${HDF_HCS_BUILD_PATH}" ]
}
}
}