1# Copyright (c) 2021-2022 iSoftStone 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. 6import("//build/ohos.gni") 7 8BOOTANIMATION_DIR = "//device/board/isoftstone/yangfan/bootanimation" 9 10ohos_prebuilt_etc("bootanimation-1920x1080") { 11 source = "$BOOTANIMATION_DIR/bootanimation-1920x1080.raw" 12 part_name = "device_yangfan" 13 install_enable = true 14} 15 16ohos_prebuilt_etc("bootanimation-720x1280") { 17 source = "$BOOTANIMATION_DIR/bootanimation-720x1280.raw" 18 part_name = "device_yangfan" 19 install_enable = true 20} 21 22group("bootanimation") { 23 deps = [ 24 ":bootanimation-1920x1080", 25 ":bootanimation-720x1280", 26 ] 27} 28