• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2021 Hisilicon (Shanghai) Technologies Co., Ltd. All rights reserved.
2
3import("//kernel/liteos_a/liteos.gni")
4
5module_name = "module_init"
6kernel_module(module_name) {
7  sources = [
8    "src/sdk_init.c",
9    "src/system_init.c",
10  ]
11
12  lib_dirs = [ "lib" ]
13  libs = [
14    "sys_config",
15    "hi_osal",
16    "hi3516ev200_base",
17    "hi3516ev200_sys",
18    "hi3516ev200_isp",
19    "hi3516ev200_vi",
20    "hi3516ev200_vo",
21    "hifb",
22    "hi3516ev200_vpss",
23    "hi3516ev200_vgs",
24    "hi3516ev200_tde",
25    "hi_mipi_rx",
26    "hi3516ev200_chnl",
27    "hi3516ev200_rc",
28    "hi3516ev200_rgn",
29    "hi3516ev200_vedu",
30    "hi3516ev200_venc",
31    "hi3516ev200_h265e",
32    "hi3516ev200_jpege",
33    "hi3516ev200_h264e",
34    "hi_sensor_i2c",
35    "hi_sensor_spi",
36    "hi3516ev200_ai",
37    "hi3516ev200_ao",
38    "hi3516ev200_aio",
39    "hi3516ev200_aenc",
40    "hi3516ev200_adec",
41    "hi3516ev200_acodec",
42    "hi_sensor_spi",
43    "hi_pwm",
44    "hi_piris",
45    "hi3516ev200_ive",
46    "hi3516ev200_cipher",
47  ]
48  visibility += [ "//device/board/hisilicon/hispark_aries/liteos_a:*" ]
49}
50