Alexander Martinz | ed22fb5 | 2023-01-09 13:05:34 +0100 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2021 The LineageOS Project |
| 3 | # Copyright (C) 2022 SHIFT GmbH |
| 4 | # |
| 5 | # SPDX-License-Identifier: Apache-2.0 |
| 6 | # |
| 7 | |
| 8 | LOCAL_PATH := $(call my-dir) |
| 9 | |
| 10 | include $(CLEAR_VARS) |
| 11 | LOCAL_MODULE := shiftos_charger_battery_scale |
| 12 | LOCAL_MODULE_STEM := battery_scale.png |
| 13 | LOCAL_SRC_FILES := images/battery_scale.png |
| 14 | LOCAL_MODULE_TAGS := optional |
| 15 | LOCAL_MODULE_CLASS := ETC |
| 16 | LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT_ETC)/res/images/charger |
| 17 | include $(BUILD_PREBUILT) |
| 18 | |
| 19 | include $(CLEAR_VARS) |
| 20 | LOCAL_MODULE := shiftos_charger_battery_scale_vendor |
| 21 | LOCAL_MODULE_STEM := battery_scale.png |
| 22 | LOCAL_SRC_FILES := images/battery_scale.png |
| 23 | LOCAL_MODULE_TAGS := optional |
| 24 | LOCAL_MODULE_CLASS := ETC |
| 25 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/res/images/charger |
| 26 | include $(BUILD_PREBUILT) |
| 27 | |
| 28 | include $(CLEAR_VARS) |
| 29 | LOCAL_MODULE := shiftos_charger_battery_fail |
| 30 | LOCAL_MODULE_STEM := battery_fail.png |
| 31 | LOCAL_SRC_FILES := images/battery_fail.png |
| 32 | LOCAL_MODULE_TAGS := optional |
| 33 | LOCAL_MODULE_CLASS := ETC |
| 34 | LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT_ETC)/res/images/charger |
| 35 | include $(BUILD_PREBUILT) |
| 36 | |
| 37 | include $(CLEAR_VARS) |
| 38 | LOCAL_MODULE := shiftos_charger_battery_fail_vendor |
| 39 | LOCAL_MODULE_STEM := battery_fail.png |
| 40 | LOCAL_SRC_FILES := images/battery_fail.png |
| 41 | LOCAL_MODULE_TAGS := optional |
| 42 | LOCAL_MODULE_CLASS := ETC |
| 43 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/res/images/charger |
| 44 | include $(BUILD_PREBUILT) |
| 45 | |
| 46 | include $(CLEAR_VARS) |
| 47 | LOCAL_MODULE := shiftos_charger_main_font |
| 48 | LOCAL_MODULE_STEM := main_font.png |
| 49 | LOCAL_SRC_FILES := images/main_font.png |
| 50 | LOCAL_MODULE_TAGS := optional |
| 51 | LOCAL_MODULE_CLASS := ETC |
| 52 | LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT_ETC)/res/images/charger |
| 53 | include $(BUILD_PREBUILT) |
| 54 | |
| 55 | include $(CLEAR_VARS) |
| 56 | LOCAL_MODULE := shiftos_charger_main_font_vendor |
| 57 | LOCAL_MODULE_STEM := main_font.png |
| 58 | LOCAL_SRC_FILES := images/main_font.png |
| 59 | LOCAL_MODULE_TAGS := optional |
| 60 | LOCAL_MODULE_CLASS := ETC |
| 61 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/res/images/charger |
| 62 | include $(BUILD_PREBUILT) |
| 63 | |
| 64 | include $(CLEAR_VARS) |
| 65 | LOCAL_MODULE := shiftos_charger_animation |
| 66 | LOCAL_MODULE_STEM := animation.txt |
| 67 | LOCAL_SRC_FILES := animation.txt |
| 68 | LOCAL_MODULE_TAGS := optional |
| 69 | LOCAL_MODULE_CLASS := ETC |
| 70 | LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT_ETC)/res/values/charger |
| 71 | LOCAL_REQUIRED_MODULES := shiftos_charger_battery_scale shiftos_charger_battery_fail shiftos_charger_main_font |
| 72 | include $(BUILD_PREBUILT) |
| 73 | |
| 74 | include $(CLEAR_VARS) |
| 75 | LOCAL_MODULE := shiftos_charger_animation_vendor |
| 76 | LOCAL_MODULE_STEM := animation.txt |
| 77 | LOCAL_SRC_FILES := animation.txt |
| 78 | LOCAL_MODULE_TAGS := optional |
| 79 | LOCAL_MODULE_CLASS := ETC |
| 80 | LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/res/values/charger |
| 81 | LOCAL_REQUIRED_MODULES := shiftos_charger_battery_scale_vendor shiftos_charger_battery_fail_vendor shiftos_charger_main_font_vendor |
| 82 | include $(BUILD_PREBUILT) |