!15 hispark_aries BUILD.gn 编译配置中增加 OHOS_image.bin 编译逻辑

Merge pull request !15 from 丁陈陈/master
This commit is contained in:
openharmony_ci
2021-06-15 14:46:03 +08:00
committed by Gitee
+15 -1
View File
@@ -1,4 +1,18 @@
# Copyright (C) 2020 Hisilicon (Shanghai) Technologies Co., Ltd. All rights reserved.
# Copyright (C) 2020 Hisilicon (Shanghai) Technologies Co., Ltd. All rights reserved.
group("hispark_aries") {
deps = []
if ((board_name == "hi3516dv300" || board_name == "hispark_taurus") &&
ohos_kernel_type == "liteos_a") {
deps += [ "//device/hisilicon/build/hi3516dv300:hi3516dv300_image" ]
} else if (board_name == "hispark_taurus" && ohos_kernel_type == "linux") {
deps += [ "//vendor/hisi/camera/dvkit_product/linux/hi3516dv300/Hi3516CV500_SDK_V2.0.3.0:linux_kernel" ]
} else if ((board_name == "hi3518ev300" || board_name == "hispark_aries") &&
ohos_kernel_type == "liteos_a") {
deps += [ "//device/hisilicon/build/hi3518ev300:hi3518ev300_make_kernel" ]
} else if (board_name == "aegis_hi3516dv300" &&
ohos_kernel_type == "liteos_a") {
deps +=
[ "//device/hisilicon/aegis_hi3516dv300/build:aegis_hi3516dv300_image" ]
}
}