1# Copyright (c) 2022-2023 Huawei Device Co., Ltd. 2# 3# HDF is dual licensed: you can use it either under the terms of 4# the GPL, or the BSD license, at your option. 5# See the LICENSE file in the root of this repository for complete details. 6 7import("//build/ohos.gni") 8import("./../../../adapter/uhdf2/uhdf.gni") 9 10ohos_executable("hdf_dbg") { 11 sources = [ "hdf_dbg.cpp" ] 12 13 if (is_standard_system) { 14 deps = [ 15 "../../../adapter/uhdf2/hdi:libhdi", 16 "../../../adapter/uhdf2/utils/:libhdf_utils", 17 ] 18 external_deps = [ 19 "c_utils:utils", 20 "ipc:ipc_single", 21 ] 22 } 23 24 install_enable = false 25 install_images = [ chipset_base_dir ] 26 subsystem_name = "hdf" 27 part_name = "hdf_core" 28} 29