-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
25 lines (17 loc) · 795 Bytes
/
Android.mk
File metadata and controls
25 lines (17 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := com.github.aexmod
LOCAL_SRC_FILES := $(call all-java-files-under, src) \
LOCAL_SRC_FILES := $(call all-Iaidl-files-under, src)
#LOCAL_SRC_FILES += src/com/github/aexmod/livedisplay/DisplayMode.aidl
#LOCAL_SRC_FILES += src/com/github/aexmod/livedisplay/HSIC.aidl
#LOCAL_SRC_FILES += src/com/github/aexmod/livedisplay/ILineageHardwareService.aidl
#LOCAL_SRC_FILES += src/com/github/aexmod/livedisplay/LiveDisplayConfig.aidl
#LOCAL_SRC_FILES += src/com/github/aexmod/livedisplay/ILiveDisplayService.aidl
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_PRIVILEGED_MODULE := true
LOCAL_REQUIRED_MODULES := services
LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/src/java
LOCAL_AIDL_FLAGS := -n
include $(BUILD_LIBRARY)