Patrick Lower | c8668b2 | 2015-05-11 16:14:17 -0400 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := optional |
| 5 | |
| 6 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 7 | |
| 8 | LOCAL_PACKAGE_NAME := SamsungDoze |
| 9 | LOCAL_CERTIFICATE := platform |
Anton Hansson | e603bb9 | 2018-02-21 14:11:44 +0000 | [diff] [blame] | 10 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Patrick Lower | c8668b2 | 2015-05-11 16:14:17 -0400 | [diff] [blame] | 11 | LOCAL_PRIVILEGED_MODULE := true |
| 12 | |
Bruno Martins | a4b1e16 | 2017-10-16 02:33:15 +0200 | [diff] [blame] | 13 | LOCAL_USE_AAPT2 := true |
| 14 | |
| 15 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Bruno Martins | e7dad9c | 2019-07-09 22:31:00 +0100 | [diff] [blame] | 16 | androidx.core_core \ |
| 17 | androidx.preference_preference |
Bruno Martins | a4b1e16 | 2017-10-16 02:33:15 +0200 | [diff] [blame] | 18 | |
| 19 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Arne Coucheron | 2f55336 | 2017-10-14 08:21:29 +0200 | [diff] [blame] | 20 | org.lineageos.platform.internal |
Michael Bestas | 5851549 | 2015-12-01 16:24:07 -0600 | [diff] [blame] | 21 | |
Patrick Lower | c8668b2 | 2015-05-11 16:14:17 -0400 | [diff] [blame] | 22 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
| 23 | |
Zhao Wei Liew | 6d0ea5b | 2016-09-07 18:20:51 +0800 | [diff] [blame] | 24 | LOCAL_RESOURCE_DIR := \ |
| 25 | $(LOCAL_PATH)/res \ |
Bruno Martins | a4b1e16 | 2017-10-16 02:33:15 +0200 | [diff] [blame] | 26 | $(TOP)/packages/resources/devicesettings/res |
Zhao Wei Liew | 6d0ea5b | 2016-09-07 18:20:51 +0800 | [diff] [blame] | 27 | |
| 28 | ifneq ($(INCREMENTAL_BUILDS),) |
| 29 | LOCAL_PROGUARD_ENABLED := disabled |
| 30 | LOCAL_JACK_ENABLED := incremental |
| 31 | endif |
| 32 | |
Patrick Lower | c8668b2 | 2015-05-11 16:14:17 -0400 | [diff] [blame] | 33 | include $(BUILD_PACKAGE) |