• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2022 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("//drivers/hdf_core/adapter/uhdf2/uhdf.gni")
9
10ohos_executable("hdf_dbg") {
11  sources = [ "hdf_dbg.cpp" ]
12
13  if (is_standard_system) {
14    external_deps = [
15      "c_utils:utils",
16      "hdf_core:libhdf_utils",
17      "hdf_core:libhdi",
18      "ipc:ipc_single",
19    ]
20  }
21
22  install_enable = false
23  install_images = [ chipset_base_dir ]
24  subsystem_name = "hdf"
25  part_name = "hdf_core"
26}
27